
/* 导航 start */

/* .nav-link.active {
  background-color: #FF6A00;
  color: white;
} */

/* 导航 end */



/* 留言板 */

.human-container {
  position: fixed;
  width: auto;
  height: 400px;
  bottom: 1vh;
  right: 1vw;
  z-index: 999;
  margin-right: 7%;
}

.human-container .contact-container {
  position: absolute;
  /* top: 0; */
  width: 300px;
  bottom: 20%;
  right: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.contact-container.visible {
  visibility: visible;
}

.contact-info {
  background-repeat: no-repeat;
  background-size: contain;
}
.phone-number {
  font-size: x-large;
  color: red;
  font-weight: bold;
  padding: 10%;
}
.message-container {
  background-repeat: no-repeat;
  background-size: contain;
  /* width: 300px;
  height: 200px; */
  justify-items: center;
  padding: 0 5% 6% 0;
}

.message-title,
.input-wrap-span {
  color: black;
  width: 200px;
}
.message-title {
  padding-top: 2%;
  font-size: large;
  font-weight: bold;
  text-align: center;
}

.input-wrap {
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 15%;
}

.input-wrapper {
  display: flex;
}

.msg-input {
  background-color: transparent;
  border: none;
  /* width: 200px; */
  height: 35px;
  background-color: transparent;
  outline: none;
  color: black;
}

.microphone-btn {
  width: 10%;
  height: 10%;
  cursor: pointer;
}

.msg-btn {
  color: white;
  background: linear-gradient(90deg, rgba(44,119,246,1) 0%, rgba(226,42,32,1) 100%);
  padding: 0 10%;
  border-radius: 5px;
  /* margin-top: 2%; */
  margin: 2% 33% 0 33%;
  text-align: center;
}
#note-submit-btn:hover{
  cursor: pointer;
}
/* 数字人 end */

/* web chatbot start */
.chatbot {
  position: fixed;
  right: 5px;
  bottom: 20px;
  z-index: 1000;
  height: 80%;
}
/* web chatbot end */


/* 悬浮按钮 start */
.float-tools {
  position: fixed;
  right: 5px;
  bottom: 50px;
  z-index: 999;
  background-color: #F3260F;
  border-radius: 50px;
}
.tools-container {
  text-align: center;
  position: relative;
}
.tools-btn {
  padding: 35% 5%;
  width: 60px;
  height: 100%;
  color: white;
  border-bottom: 1px solid white;
  justify-items: center;
}

.tools-btn img {
  max-width: 40%;
  display: inline;
}

.tools-btn:hover {
  cursor: pointer;
}

.tools-btn:last-child {
  border-bottom: none;
}

.tools-btn a {
  color: white;
  padding: 25%;
}

/* 悬浮按钮 end */



@media (max-width: 599px) {
   /* 数字人 */
  .human-container {
    width: 100%;
    top: 60px;
    margin-right:unset;
  }
  .message-title,
  .phone-number {
    font-size: small;
    
  }
  .phone-number {
    padding: 8%;
  }
  .human-container .contact-container {
    right: 10%;
    bottom: unset;
    top: 350px;
  }
  .msg-input {
    height: unset;
    width: 70%;
  }
  .msg-btn {
    margin: 2% 33% 0 20%;
  }
  .tools-btn {
    margin: 0;
    width: 40px;
  }

  /* web chatbot */
  .chatbot {
    /* width: 100%; */
    bottom: 0px;
  }

  /* 信息内容页 */
  .container.sys-content-container .row {
    display: block;
  }
  .container.sys-content-container .row .page-title {
    font-size: larger;
  }
  .container.sys-content-container .row .title {
    font-size: large;
  }
}


