/* STM32Sidekick */
#ai-enterance {
  position: fixed;
  bottom: 116px;
  right: 24px;
  z-index: 9999;
}

#ai-enterance > div {
  display: flex;
  width: 42px;
  padding: 6px 6px 12px 6px;
  flex-direction: column;
  align-items: center;
  border-radius: 36px;
  background: #0c2050;
  cursor: pointer;
}

#ai-enterance > div:hover {
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.15) 100%
    ),
    #0c2050;
}

#ai-enterance > div img {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
}

#ai-enterance > div span {
  width: 14px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
}

#ai-tips-box {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}

#ai-tips-box .ai-tips-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  /* height: 436px; */
  background: #fff;
}

.ai-tips-container .ai-tips-header {
  height: 104px;
  padding: 30px 44px 18px;
  background: #ffd200;
  position: relative;
}

.ai-tips-header .header-title {
  color: #03234b;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.225px;
}

.ai-tips-header .sub-title {
  color: #333;
  text-align: center;
  font-size: 14px;
  line-height: 150%;
  margin-top: 6px;
}

.ai-tips-header .close-btn {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 18px;
  right: 18px;
  background-image: url("https://static.stmcu.com.cn/applications/Home/images/common/icon-close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.ai-tips-header .close-btn:after {
  content: "";
  background-image: url("https://static.stmcu.com.cn/applications/Home/images/common/icon-close-hover.svg");
}

.ai-tips-header .close-btn:hover {
  background-image: url("https://static.stmcu.com.cn/applications/Home/images/common/icon-close-hover.svg");
}

.ai-tips-container .ai-tips-content {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-tips-content > div {
  display: flex;
  align-items: center;
  width: 325px;
  height: 30px;
  color: #333;
  margin-bottom: 12px;
}

.ai-tips-content > div > img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.ai-tips-content > div p {
  color: #333;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
}

.ai-tips-content > div p img {
  margin: 0 4px;
}

.ai-tips-content > div a {
  color: #3cb4e6;
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
}

.ai-tips-content > div a:hover {
  text-decoration: underline;
}

.ai-tips-content .start-btn {
  display: flex;
  width: 366px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #3cb4e6;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-top: 18px;
}

.ai-tips-content .start-btn:hover {
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.15) 100%
    ),
    #3cb4e6;
}

.ai-tips-content .more {
  color: #848486;
  font-size: 12px;
  line-height: 150%;
  margin-top: 6px;
}

.ai-tips-content .more:hover {
  color: #59bfea;
  text-decoration: underline;
}

.ai-tips-container .ai-tips-footer {
  background: #03234b;
  padding: 12px;
}

.ai-tips-footer ul {
  width: fit-content;
  margin: 0 auto;
}

.ai-tips-footer li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 22px;
}

.ai-tips-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}