/* CSS Document */
/*link*/




    body {
      background: no-repeat center center fixed;
      background-size: cover;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .bg-option {
      transition: transform 0.3s ease;
    }
    .bg-option:hover {
      transform: scale(1.05);
    }
    .selected-bg {
      border: 3px solid #3b82f6;
    }




.grid-container {
    display: grid;
    place-items: center;
    height: 100vh;
}




  .engine-btn.active {
    background-color:White;
  }




.no-border {
  border: none;
  outline: none;
}




  .center-image {
    display: block;
    margin: 0 auto;
  }




.buttontu {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 凸起效果 */
  transition: all 0.3s ease;
}

.buttontu:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* 悬停时增强凸起感 */
}

.buttontu:active {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); /* 点击时模拟下压 */
  transform: translateY(2px);
}




      .menu-transition {
            transition: all 0.3s ease-in-out;
        }
        .submenu-item {
            transition: background-color 0.2s ease;
        }
        .submenu-item:hover {
            background-color: rgba(59, 130, 246, 0.1);
        }
        .btn-glow:hover {
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }
        .menu-slide-enter {
            opacity: 0;
            transform: translateY(-10px);
        }
        .menu-slide-enter-active {
            opacity: 1;
            transform: translateY(0);
        }




.adropdown-content {
    left: 100%; /* 关键：将下拉菜单左边缘定位到按钮中心 */
    transform: translateX(-45%); /* 关键：向左移动自身宽度的一半，实现居中 */
    color: #3333ff;
}




.bdropdown-content {
    left: 0%; /* 关键：将下拉菜单左边缘定位到按钮中心 */
    transform: translateX(-50%); /* 关键：向左移动自身宽度的一半，实现居中 */
  width: 240px; /* 设置下拉菜单宽度 */
  min-width: 150px; /* 最小宽度 */
    color: #3333ff;
}




.cdropdown-content {
    left: 0%; /* 关键：将下拉菜单左边缘定位到按钮中心 */
    transform: translateX(-95%); /* 关键：向左移动自身宽度的一半，实现居中 */
  width: 225px; /* 设置下拉菜单宽度 */
  min-width: 150px; /* 最小宽度 */
    color: #3333ff;
    background-color: #f5f5f5;
}



