html {
    scroll-behavior: smooth;
}
.page_Top{
    display: none;
}

.pageTop {
    height: 56px;
    width: 56px;
    position: fixed;
    right: 15px;
    bottom: 65px;
    background: linear-gradient(145deg, #0a1b30, #101f38);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    z-index: 99;
    transition: all 0.3s ease;
    opacity: 0.85;
    cursor: pointer;
  }
  .pageTop:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
    opacity: 1;
  }
  .pageTop_arrow {
    height: 12px;
    width: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 2px;
    transition: transform 0.3s ease;
  }
