* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vw-1920: calc(100vw / 1920);
    --vw-750: calc(100vw / 750);
}

body {
    font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #4B5563;
    font-weight: 400;
}

.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}


img {
    width: 100%;
    height: 100%;
}


.chose {
    color: #fff;
    background-color: #078656;
}


.nav-list>div:hover,
.link:hover {
    cursor: pointer;
}

.footer,
.footer-h5 {
    font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.footer-download,
.link>div {
    transition: transform 0.3s ease;
}

.footer-download:hover,
.link>div:hover {
    transform: scale(1.1);
}


.nav-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 1s;
}


.navigation {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #374151;
}

.logo-imgh5 {
    font-weight: bold;
    font-size: calc(36 * var(--vw-750));
    color: #000000;
    line-height: calc(24 * var(--vw-750));
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-fadeup {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}


.animated-delay-1 {
    animation-delay: 0.2s;
}


@media screen and (min-width: 769px) {

    .menu,
    .h5 {
        display: none;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo-text {
        display: block;
        font-weight: 800;
        font-size: calc(36 * var(--vw-1920));
        color: #000000;
        line-height: calc(24 * var(--vw-1920));
        margin-left: calc(10 * var(--vw-1920));
    }

    .logo-img {
        display: block;
        width: calc(55 * var(--vw-1920));
        height: calc(55 * var(--vw-1920));

    }

    .logo-imgh5 {
        display: none;
    }

    .navigation {
        display: flex;
        align-items: center;
        margin: 0 calc(260 * var(--vw-1920));
        height: calc(64 * var(--vw-1920));
        width: calc(1400 * var(--vw-1920));
        font-size: calc(16 * var(--vw-1920));
    }



    .nav-list div {
        height: calc(64 * var(--vw-1920));
        padding: calc(20 * var(--vw-1920)) calc(12 * var(--vw-1920));
        line-height: calc(24 * var(--vw-1920));
    }



    .footer {
        background-color: #F1FFF2;
        padding: 0 calc(260 * var(--vw-1920));
        font-family: "Roboto";
        font-weight: 400;
        font-size: calc(16 * var(--vw-1920));
        color: #000000;
        line-height: calc(24 * var(--vw-1920));
    }

    .footer>div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: calc(72 * var(--vw-1920));
    }

    .footer .link {
        font-weight: bold;
        font-size: calc(24 * var(--vw-1920));
        color: #000000;
        line-height: calc(32 * var(--vw-1920));
        padding-top: calc(90 * var(--vw-1920));
        padding-bottom: calc(24 * var(--vw-1920));
    }

    .footer>div>div>div {
        margin-bottom: calc(20 * var(--vw-1920));
    }

    .footer>div>div>div img {
        width: calc(15 * var(--vw-1920));
    }

    .footer .footer-logo {
        width: calc(56 * var(--vw-1920));
        height: calc(56 * var(--vw-1920));
    }

    .flogo {
        display: flex;
        align-items: center;
        height: calc(56 * var(--vw-1920));
        font-size: 0;
    }

    .logo-text1 {
        font-weight: 800;
        font-size: calc(36 * var(--vw-1920));
        color: #000000;
        margin-left: calc(10 * var(--vw-1920));
    }

}


@media screen and (max-width: 768px) {

    .logo-img,
    .logo-text {
        display: none;
    }

    .logo-imgh5 {
        display: block;
        height: calc(24 * var(--vw-750));
    }

    .top .navigation .home {
        height: calc(52 * var(--vw-750));
    }

    .navigation {
        display: flex;
        align-items: center;
        position: relative;
        width: 100vw;
        height: calc(88 * var(--vw-750));
    }

    .banner {
        margin-top: calc(88 * var(--vw-750));
    }

    .menu {
        box-sizing: border-box;
        display: block;
        margin-right: auto;
        padding-left: calc(32 * var(--vw-750));
    }

    .menu>img {
        width: calc(40 * var(--vw-750));
        height: calc(40 * var(--vw-750));
    }

    .logo {
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-list {
        display: none;
        position: absolute;
        top: calc(88 * var(--vw-750));
        left: 0;
        width: 100vw;
        background-color: #fff;
        font-weight: 400;
        font-size: calc(32 * var(--vw-750));
        color: #000;
    }

    .nav-list>div {
        height: calc(106 * var(--vw-750));
        line-height: calc(106 * var(--vw-750));
        padding: 0 calc(32 * var(--vw-750));
        border-bottom: 1px solid #eee;
        box-sizing: border-box;
    }

    .bottomline {
        background: #BDBDBD;
        height: 1px;
        margin-top: calc(100 * var(--vw-750));
    }


    .footer {
        position: relative;
        background-color: #F1FFF2;
        padding: 0 calc(64 * var(--vw-750));
        font-family: "Roboto";
        font-weight: 400;
        font-size: calc(16 * var(--vw-750));
        color: #000000;
        line-height: calc(24 * var(--vw-750));
    }

    .footer>div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: calc(72 * var(--vw-750));
    }

    .footer .link {
        font-weight: bold;
        font-size: calc(24 * var(--vw-750));
        color: #000000;
        line-height: calc(32 * var(--vw-750));
        padding-top: calc(90 * var(--vw-750));
        padding-bottom: calc(24 * var(--vw-750));
    }

    .footer>div>div>div {
        margin-bottom: calc(16 * var(--vw-750));
    }

    .footer>div>div>div img {
        width: calc(15 * var(--vw-750));
    }

    .flogo {
        display: flex;
        align-items: center;
        position: absolute;
        right: calc(73 * var(--vw-750));
        bottom: calc(95 * var(--vw-750));
    }

    .footer .footer-logo {
        width: calc(44 * var(--vw-750));
        height: calc(44 * var(--vw-750));
    }

    .logo-text1 {
        font-weight: 800;
        font-size: calc(20 * var(--vw-750));
        color: #000000;
        margin-left: calc(10 * var(--vw-750));
    }

    .footer-h5 {
        display: none;
    }
}