.woot-widget-bubble {
  /*display: flex;*/
  background: #4daf0e;
  border-radius: 100px;
  border-width: 0px;
  bottom: 120px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16) !important;
  cursor: pointer;
  height: 64px;
  padding: 0px;
  position: fixed;
  user-select: none;
  width: 64px;
  z-index: 2147483000 !important;
  right: 10px;
  /*justify-content: center;*/
  /*align-items: center;*/
}
.woot-widget-bubble svg {

  margin-left: 4px;

}





/* 基础样式 */
* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 打开按钮样式 */
#openModalBtn {
  background-color: #4a6bdf;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#openModalBtn:hover {
  background-color: #3a56c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 模态框样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 500px;
  position: relative;
  animation: slideDown 0.4s ease-out;
  max-height: 80vh; /* 改为视口的70% */
  height: auto; /* 保持自动高度 */
}

/* 关闭按钮 */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.2s;
}

.close-btn:hover {
  color: #333;
  transform: rotate(90deg);
}

/* 标题样式 */
.modal-title {
  margin-top: 0;
  margin-bottom: 12px;
  color: #2c3e50;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

/* 表单样式 */
.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #4a5568;
}

.form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #4a6bdf;
  box-shadow: 0 0 0 3px rgba(74, 107, 223, 0.2);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* 按钮区域 */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #4a6bdf;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #3a56c4;
}

.btn-secondary {
  background-color: #f1f5f9;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: #e2e8f0;
}

/* 动画 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .modal-content {
    margin: 20% auto;
    width: 95%;
    padding: 20px;
  }
}

/* 添加验证码相关样式 */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-image {
  width: 120px;
  height: 40px;
  background-color: #f0f2f5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333;
  user-select: none;
  border: 1px solid #e2e8f0;
}

.captcha-refresh {
  background: none;
  border: none;
  color: #4a6bdf;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s;
}

.captcha-refresh:hover {
  transform: rotate(180deg);
  color: #3a56c4;
}