#tips_wrapper {
  position: absolute;
  top: 120px; 
  z-index: 1000;
  width: 300px;
  background-color: #fff;
  color: #606266;
  border-radius: 10px;
  border: 1px solid rgba(5, 5, 5, 0.06);
  box-shadow: 5px 5px 20px 5px #666666;
}
#tips_wrapper .tips_title {
  border-radius: 10px 10px 0px 0px;
  background-color: var(--themeColor1);
  color: var(--themeColor2);
  font-size: 26px;
  font-weight: 700;
  padding: 10px;
  cursor: move;
}
#tips_wrapper .tips_content {
  padding: 10px;
  font-size: 16px;
  max-height: 600px;
  overflow-y: auto;
}
#tips_wrapper .tips_content .tip{
  font-size: 14px;
  color: #F56C6C;
}
#tips_wrapper .tips_content .tips_item {
  margin-top: 5px;
  padding-left: 5px;
  font-size: 14px;
  position: relative;
}
#tips_wrapper .tips_content .tips_item button {
  border: 1px solid var(--themeColor1);
}

#tips_wrapper .btns {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
#tips_wrapper .btns button {
  margin-left: 5px;
}
#tips_wrapper .tips_close {
  color: var(--themeColor2);
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 20px;
  cursor: pointer;
}
