/* 导航栏的样式 */
/* 导航样式 */
.ggh-top-navigation {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: white;
    border-bottom: 1px solid #cccccc;
    height: 135px;
}

.ggh-top-navigation .ggh-top-navigation-wrap {
    display: flex;
    align-items: center;
    height: 100%;
}

/* .ggh-top-navigation .ggh-top-navigation-wrap:hover{
    border: #e3e3e3 0px 4px 6px 0px;
} */

.ggh-top-navigation .container0 .row .col {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ggh-top-navigation .ggh-top-navigation-wrap .container .row .col .nav .nav-item .nav-link {
    color: #333333;
    font-size: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    height: 135px;
}
.ggh-top-navigation .ggh-top-navigation-wrap .container-1 .row .col .nav .nav-item .nav-link {
    color: #333333;
    padding: 10px 10px;
}

.ggh-top-navigation .ggh-top-navigation-wrap .container-1 .row .col .nav .nav-item .nav-link:hover {
    /* background: linear-gradient(#ff656c, #a70008);
    background: -webkit-linear-gradient(#ff656c, #a70008);
    background: -o-linear-gradient(#ff656c, #a70008);
    background: -moz-linear-gradient(#ff656c, #a70008);
    color: white; */
    color: var(--main-color)
}


.ggh-top-navigation .ggh-top-navigation-wrap .container-1 .row .col .nav .nav-item .nav-link.active {
    /* color: white;
    background: linear-gradient(#ff656c, #a70008);
    background: -webkit-linear-gradient(#ff656c, #a70008);
    background: -o-linear-gradient(#ff656c, #a70008);
    background: -moz-linear-gradient(#ff656c, #a70008); */
    color: var(--main-color) !important;
}

.ggh-top-navigation .ggh-web-navigation-full-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    display: none;
}

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2a2a2a;
    /* animation-name: fadeInRight;
    -webkit-animation: fadeInRight; */
}

/*从右到左进入*/
/* @keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate(1000px, 0);
        transform: stranslate(1000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate(10px, 0);
        transform: stranslate(10px, 0);
    }
} */

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content .top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 110px;
    align-items: center;
    color: white;
}

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content .top-bar div {
    margin: 0 20px;
}

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content a {
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    color: white !important;
}

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content a:hover {
    background-color: var(--main-color);
    color: white;
    /* border-radius: 40px; */
}

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content .top-bar .more-btn-wrap {
    cursor: pointer;
}

.ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content .top-bar .more-btn-wrap:hover {
    color: var(--main-color);
}
.ggh-top-navigation .ggh-top-navigation-wrap .ggh-navigation-logo-wrap {
    margin-left: 20px;
    margin-right: 60px;
}

.ggh-top-navigation .ggh-top-navigation-wrap .more-btn-wrap {
    margin-right: 20px;
    margin-left: 30px;
}

@media screen and (max-width: 576px) {

    .ggh-top-navigation {
        height: 60px;
    }

    .ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content {
        width: 100%;
    }
}

@media screen and (min-width: 576px) {


    .ggh-top-navigation {
        height: 60px;
    }

    .ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {

    .ggh-top-navigation {
        height: 75px;
    }

    .ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content {
        width: 50%;
    }
}

@media screen and (min-width: 992px) {

    .ggh-top-navigation {
        height: 90px;
    }

    .ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content {
        width: 40%;
    }
}


@media screen and (min-width: 1200px) {

    .ggh-top-navigation {
        height: 120px;
    }

    .ggh-top-navigation .ggh-web-navigation-full-wrap .wrap .content {
        width: 30%;
    }
}