@charset "UTF-8";

body {
  font-size: 0.875rem;
  width: 100%;
  margin: 0 auto;
  /* min-height: 1024px; */
  height: 100%;
  padding: 0;
}

.dashbord {
  background-color: #00353E;
  height: 90px;
  display: flex;
  /*网站名称*/
}

.dashbord .brand {
  height: 70px;
  width: 126px;
  margin-top: 20px;
  margin-left: 62px;
}

.dashbord .title {
  /* Dashboard */
  /* position: absolute; */
  width: 400px;
  height: 37.5px;
  margin-left: 30px;
  margin-top: 26.25px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #FFFFFF;
}

.dashbord button {
  color: #FFFFFF;
  margin-left: auto;
  font-weight: bold;
}

.dashbord button:hover {
  color: #FFFFFF;
  background-color: #00b3db;
}

#logo {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 99;  
}

#logo:hover {  
  background-color: rgba(255, 255, 255, 1);  
}

#viewerPatent {
  position: relative;
}

#viewerPatent #logout {
  position: absolute;
  top: 20px;
  right: 200px;
  z-index: 99;
}

#viewerPatent #logout #logoutBtn {
  color: #0e6fe6;
  font-size: 20px;
}

#placeholder {
  position: relative;
  height: 100vh;
  background: no-repeat url("../imgs/bg.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#placeholder .loginTxt {
  font-size: 80px;
  color: whitesmoke;
}

#placeholder #autodeskSigninButton {
  min-width: 300px;
  min-height: 40px;
  background-color: rgba(76,94,111,0.5);
  color: #C5CAD0;
  font-size: 25px;
  opacity: 0.5;
}

#placeholder #autodeskSigninButton:hover{
  background-color: rgba(76,94,111,1);
}


#timeline {
  position: absolute;
  /* left: 0; */
  right: 0;
  bottom: 0;
  height: 100px;
  width: 100%;
}

.full {
  height: 100vh;
}

.part {
  height: calc(100vh - 100px);
}

/* 自定义样式 */
.check-item {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}

/* 检查结果的颜色 */
.result-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.result-fail {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.result-pending {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}