html {
  perspective: 800px;
  font-size: 16px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
}
body {
  font-size: 16px;
  width: 100%;
  height: 100vh;
}
#root {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding: 5px;
  box-sizing: border-box;
}
input::placeholder {
  /* chrome浏览器 */
  color: #aaa;
}
input::-webkit-input-placeholder {
  /* 使用webkit内核的浏览器 */
  color: #aaa;
}
input:-moz-placeholder {
  /* Firefox版本4-18 */
  color: #aaa;
}
input::-moz-placeholder {
  /* Firefox版本19+ */
  color: #aaa;
}
input:-ms-input-placeholder {
  /* IE浏览器 */
  color: #aaa;
}
[v-cloak] {
  display: none !important;
}
table {
  border-collapse: collapse;
  width: 100%;
}
table th,
table td {
  padding: 4px 6px;
  border: 1px solid #ddd;
}
table th {
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}
table td {
  text-align: left;
  padding: 0px 5px 5px 5px;
  height: 32px;
  vertical-align: middle;
}
table td .url-link {
  display: inline-block;
  margin-top: 5px;
  cursor: pointer;
  padding: 0 5px;
  line-height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: #7b1aa9;
  margin-right: 5px;
  transition: all 0.3s;
  height: 26px;
}
table td .url-link:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px) rotateZ(-2deg);
}
table td .url-link:hover::after {
  position: absolute;
  font-family: "iconfont" !important;
  content: "\e8ca";
  transform: rotateZ(-75deg);
  right: -12px;
  font-size: 22px;
  animation: handon 0.5s forwards;
  opacity: 0;
}
.search-engine {
  display: flex;
  flex-wrap: wrap;
}
.search-engine > div.suggest-show {
  border-bottom: none;
  box-shadow: none;
}
.search-engine .search-suggest {
  position: absolute;
  top: 27px;
  left: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  padding: 4px;
  border-radius: 0 0 6px 6px;
  width: 192px;
  box-shadow: 2px 2px 2px #777;
  z-index: 999;
  font-size: 12px;
}
.search-engine .search-suggest > div {
  cursor: pointer;
  padding: 5px 4px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 2px;
}
.search-engine .search-suggest > div.selected {
  background-color: #f6f6f6;
  color: #6a5efb;
}
.search-engine .search-suggest > div:hover {
  background-color: #f1f1f1;
}
.search-engine > div {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  padding: 2px 22px 2px 2px;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 2px #777;
  box-sizing: border-box;
  margin: 3px 5px 3px 0;
  border-radius: 4px;
}
.search-engine > div input[type="text"] {
  border: none;
  border-top: 1px solid transparent;
  box-shadow: none;
  flex: 1;
  font-size: 14px;
}
.search-engine > div span {
  position: absolute;
  right: 3px;
}
.search-engine > div .iconfont {
  font-size: 26px;
  cursor: pointer;
  border-radius: 50%;
}
.login-dialog-mask {
  display: inline-block;
  background-color: #000;
  opacity: 0.3;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.login-dialog {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 240px;
  height: 145px;
  z-index: 9999;
  background-color: #fff;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 2px 2px 2px #777;
}
.login-dialog .row {
  display: flex;
  align-items: center;
}
.login-dialog input[type="text"],
.login-dialog input[type="password"] {
  height: 20px;
  border: 1px solid #888;
  color: #333;
  padding: 4px 6px;
  width: 160px;
  border-radius: 4px;
  outline: #888;
  box-shadow: 2px 2px 2px #777;
  margin-right: 4px;
  font-weight: normal;
  font-size: 14px;
}
.water-mark {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
}
.water-mark .water-mark-item {
  display: inline-block;
  width: 200px;
  height: 150px;
  transform: rotate(-15deg);
  text-align: center;
  line-height: 200px;
  opacity: 0.1;
}
@keyframes handon {
  from {
    top: -10px;
    opacity: 0.5;
  }
  to {
    top: -14px;
    opacity: 1;
  }
}
input[type="text"] {
  border: 1px solid #888;
  color: #333;
  padding: 4px 6px;
  width: 160px;
  border-radius: 4px;
  outline: #888;
  box-shadow: 2px 2px 2px #777;
  margin-right: 4px;
  font-weight: normal;
  font-size: 14px;
}
.clear-search {
  position: absolute;
  display: inline-block;
  top: 6px;
  right: 8px;
  content: "×";
  width: 20px;
  height: 20px;
  line-height: 22px;
  background-color: #ddd;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}
.btn {
  cursor: pointer;
  padding: 0px 5px;
  height: 26px;
  line-height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: #7b1aa9;
  font-weight: normal;
}
.finish {
  color: green;
}
.emphasize {
  font-weight: bold;
}
.recordcode {
  text-align: center;
  padding: 20px 0 2px 0;
  align-self: center;
  justify-self: flex-end;
  color: #7b1aa9;
}
.recordcode a {
  color: #7b1aa9;
}
