@import url('./base.css');

.navBar {
    position: fixed;
    left: 50%;
    top: 25px;
    transform: translate(-50%,0);
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1320px;
    min-width: 375px;
    height: 60px;
    justify-content: space-between;
    background-color: #f5f7fa;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    /* overflow: hidden; */
    z-index: 999;
    box-shadow: 0px 10px 30px rgba(112, 111, 111, 0.5);
}
.navBar .menuGround {
    display: none;
}

.navBar .icon {
    height: 39px;
    margin: auto;
}

.navBar .btnGround {
    display: flex;
    padding: 0 20px;
}

.navBar a {
    display: inline-flex;
    padding: 0 30px;
    height: 100%;
    line-height: 60px;
    font-size: 18px;
    z-index: 1;
    text-decoration: none;
    transition: all .5s;
    color: #000;
}

.navBar a:hover {
    color: #0076fd;
    transform: translate(0,-8px);
}

.navBar .btnGround>div {
    display: flex;
    align-items: center;
}

.navBar a.navBtn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    padding: 0 30px;
    border-radius: 30px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 600px) {
    .navBar .btnGround {
        display: none;
    }

    .navBar .menuGround {
        display: block;
    }
}
.menuGround a{
    display: flex;
    justify-content: center;
    align-items: center;
}