.try-container-wrapper {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.try-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 32px;
  border-radius: 8px;
  background: linear-gradient(
    93.29deg,
    rgba(255, 255, 255, 0.95) 13.65%,
    rgba(248, 250, 255, 0.95) 87.55%
  );
  box-shadow: 4px 8px 16px 0px rgba(0, 0, 0, 0.059);
}
.try-close-wrapper {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.try-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
}

.try-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.try-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #000;
}

.try-left-name {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}

.try-left-desc {
  font-size: 14px;
  line-height: 17px;
}

.try-left-simple-desc-m {
  display: none;
}

.try-right {
  display: flex;
  flex-direction: column;
  align-items: center; /* 垂直居中对齐 */
  gap: 16px; /* 垂直间距 */
}

.try-right-btns {
  display: flex;
  gap: 12px;
}

.try-btn,
.product-btn {
  padding: 11px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.try-btn {
  background-color: #25d366;
}

.product-btn {
  background-color: #3f9fff;
}

.try-right-desc {
  font-size: 14px;
  line-height: 21px;
  color: #585858;
  text-align: center; /* 文字最大宽度，可以根据需要调整 */
}
