﻿.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mtb10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mtb20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mtb30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mtb40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mtb50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mtb60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.mtb70 {
    margin-top: 70px;
    margin-bottom: 70px;
}

.mtb80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.mtb90 {
    margin-top: 90px;
    margin-bottom: 90px;
}

.mtb100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.mtb110 {
    margin-top: 110px;
    margin-bottom: 110px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 14px;
}

.dis {
    display: none;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    border-radius: 10px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ccc;
}

.wordCenter{
    text-align:center;
}
/*#top {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}*/
.topLogo {
    width: 60%;
    float: left;
    height: auto;
    overflow: hidden;
    vertical-align: middle;
    color: #999;
}

    .topLogo h1 {
        display: inline-block;
        line-height: 75px;
        font-size: 24px;
        font-weight: bold;
        margin-left: 30px;
        letter-spacing: -1px;
    }

    .topLogo img {
        max-height: 75px;
    }
.topLanguage {
    width: 30%;
    float: right;
    text-align: right;
    line-height: 70px;
    font-size: 16px;
}


.topButton {
    width: 40%;
    float: left;
    height: 85px;
    text-align: right;
    color: #fff;
}

.topMenuWord {
    width:60px;float:right;
    color:#33cc33;
    line-height:30px;
    padding-top:15px;
    font-size:18px;
    text-align:center;
    cursor:pointer;
}
.topMenuButton {
    width: 30px;
    float: right;
    height: auto;
    overflow: hidden;
    padding-top: 20px;
}

    .topMenuButton span {
        width: 100%;
        height: 3px;
        background-color: #33cc33;
        display: block;
        margin-bottom: 5px;
        border-radius: 2px;
    }

    .topMenuButton:hover {
        cursor: pointer;
    }

.buttonBlock span {
    background-color: #33cc33;
}


.topMenu {
    display: inline;
    margin-left: 10px;
}

.topLine {
    width: 100%;
    height: 10px;
    overflow: hidden;
    border-top: 1px solid #eee;
}


/*浮动菜单*/

.menuDrop {
    width: 33%;
    height: 94%;
    position: fixed;
    top: 0;
    right: -43%;
    background: rgba(45,48,50,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: saturate(150%) blur(20px);
    backdrop-filter: saturate(150%) blur(20px);
    z-index: 1000;
    padding: 3% 0 3% 10%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.menuClose {
    width: 100%;
    height: 5%;
    color: #fff;
    animation: close-nav-bottom 0.6s infinite;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    margin-top:5%;
}

.btClose:hover {
    cursor: pointer;
}

@keyframes close-nav-bottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.menuContent {
    width: 33%;
    height: 80%;
    display: none;
    position: fixed;
    right: 0;
    top: 10%;
    bottom: 10%;
    z-index: 1001;
}

.menuList {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

    .menuList ul li {
        width: 100%;
        vertical-align: middle;
    }

        .menuList ul li h2 {
            transform: translateX(-50px);
            opacity: 0;
            font-weight: 300;
            font-size: 19px;
            line-height: 60px;
            color: #fff;
        }

            .menuList ul li h2 span {
                opacity: 0.8;
            }

                .menuList ul li h2 span:hover {
                    opacity: 1;
                }

        .menuList ul li:nth-child(1) h2 {
            animation: nav-right 0.6s infinite;
            animation-delay: 0.6s;
            animation-direction: normal;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .menuList ul li:nth-child(2) h2 {
            animation: nav-right 0.6s infinite;
            animation-delay: 1s;
            animation-direction: normal;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .menuList ul li:nth-child(3) h2 {
            animation: nav-right 0.6s infinite;
            animation-delay: 1.2s;
            animation-direction: normal;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .menuList ul li:nth-child(4) h2 {
            animation: nav-right 0.6s infinite;
            animation-delay: 1.4s;
            animation-direction: normal;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .menuList ul li:nth-child(5) h2 {
            animation: nav-right 0.6s infinite;
            animation-delay: 1.6s;
            animation-direction: normal;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .menuList ul li:nth-child(6) h2 {
            animation: nav-right 0.6s infinite;
            animation-delay: 1.8s;
            animation-direction: normal;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

@keyframes nav-right {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.menuList li h2:hover {
    cursor: pointer;
}

.menuSubList {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
}

    .menuSubList h3 {
        line-height: 50px;
        font-size: 16px;
        transform: translateX(-50px);
        opacity: 0;
    }

    .menuSubList a {
        color: #fff;
    }

        .menuSubList a:hover {
            color: #fff;
            opacity: 0.8;
        }


    .menuSubList h3:nth-child(1) {
        animation: nav-right 0.6s infinite;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .menuSubList h3:nth-child(2) {
        animation: nav-right 0.6s infinite;
        animation-delay: 0.4s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .menuSubList h3:nth-child(3) {
        animation: nav-right 0.6s infinite;
        animation-delay: 0.8s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .menuSubList h3:nth-child(4) {
        animation: nav-right 0.6s infinite;
        animation-delay: 1s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .menuSubList h3:nth-child(5) {
        animation: nav-right 0.6s infinite;
        animation-delay: 1.2s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .menuSubList h3:nth-child(6) {
        animation: nav-right 0.6s infinite;
        animation-delay: 1.4s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .menuSubList h3:nth-child(7) {
        animation: nav-right 0.6s infinite;
        animation-delay: 1.6s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .menuSubList h3:nth-child(8) {
        animation: nav-right 0.6s infinite;
        animation-delay: 1.6s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }



.menuSubListTitle {
    font-size: 19px;
    line-height: 60px;
    font-weight: 300;
}

.menuLink {
    width: 33%;
    height: 5%;
    position: fixed;
    right: 0;
    bottom: 5%;
    z-index: 1001;
    transition: all 0.6s;
}

    .menuLink a {
        color: #fff;
    }

        .menuLink a:hover {
            color: #fff;
            opacity: 0.7;
        }

    .menuLink li {
        display: inline-block;
        margin-right: 10px;
        line-height: 40px;
        position: relative;
        text-align: center;
        animation: nav-bottom 0.6s infinite;
        animation-delay: 0.6s;
        animation-direction: normal;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
        opacity: 0;
    }

@keyframes nav-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

    .menuLink .topLinkPic {
        width: 100%;
    }

        .menuLink .topLinkPic img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            filter: grayscale(100%);
        }

    .menuLink li:hover .topLinkPic img {
        filter: grayscale(0%);
    }

.menuLinkDrop {
    width: 110px;
    height: 110px;
    background-color: #fff;
    line-height: 110px;
    text-align: center;
    position: absolute;
    bottom: 50px;
    left: -35px;
}

    .menuLinkDrop::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #fff;
    }

    .menuLinkDrop img {
        width: 100px;
        border-radius: 0%;
    }
/*浮动菜单*/

/*Banner*/
#banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

    #banner img {
        width: 100%;
    }

.bannerPage {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .bannerPage img {
        width: 100%;
    }
/*Banner*/
/*底部*/
.bottom {
    width: 100%;
    height: 95%;
}

.bottomContent {
    width: 100%;
    height: 60%;
}


.bottomMenu {
    width: 70%;
    float: left;
    position: relative;
}

.bottomMenuParent li {
    width: 16%;
    display: inline-block;
    height: auto;
    line-height: 100%;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #666;
}

.bottomMenuSubList {
    width: 94%;
    height: auto;
    overflow: hidden;
    position: fixed;
    bottom: 10%;
    left: 0;
    right: 0;
    background-color: #f3f3f3;
    padding: 30px 3% 0 3%;
    z-index: 9;
}

    .bottomMenuSubList .list {
        width: 70%;
    }

    .bottomMenuSubList .close {
        display: none;
        width: 90%;
        margin-right: 10%;
        line-height: 40px;
    }

        .bottomMenuSubList .close span {
            float: right;
            font-size: 20px;
        }

            .bottomMenuSubList .close span:hover {
                cursor: pointer;
            }

.bottomMenuList {
    width: 16%;
    display: inline-block;
    height: auto;
    overflow: hidden;
}

    .bottomMenuList dd {
        width: 100%;
        height: 30px;
        line-height: 30px;
        overflow: hidden;
        color: #666;
        transition: all 0.5s;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .bottomMenuList dd span {
            display: inline-block;
            width: 0px;
            overflow: hidden;
            transition: all 0.5s;
            line-height: 30px;
        }

        .bottomMenuList dd a {
            clear: both;
            color: #666;
            display: inline-block;
            line-height: 30px;
        }

        .bottomMenuList dd:hover {
            text-indent: 5px;
            color:#33cc33;
        }

            .bottomMenuList dd:hover span {
                width: 20px;
            }

            .bottomMenuList dd:hover a {
                color: #319332
            }

.whiteColor {
    color: #999;
}

    .whiteColor h2 {
        color: #999;
    }

    .whiteColor a {
        color: #999;
    }

.bottomLink {
    width: 30%;
    float: left;
    height: 100%;
}

    .bottomLink li {
        display: inline-block;
        margin-right: 15px;
        line-height: 100%;
        position: relative;
        text-align: center;
        float: right;
    }

    .bottomLink .bottomLinkPic {
        width: 100%;
    }

        .bottomLink .bottomLinkPic img {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            filter: grayscale(100%);
        }

    .bottomLink li:hover .bottomLinkPic img {
        filter: grayscale(0%);
    }

.bottomLinkDrop {
    width: 110px;
    height: 110px;
    background-color: #fff;
    line-height: 110px;
    text-align: center;
    position: absolute;
    bottom: 50px;
    left: -40px;
    z-index: 99;
}

    .bottomLinkDrop::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #fff;
    }

    .bottomLinkDrop img {
        width: 100px;
        border-radius: 0%;
    }

.bottomCopy {
    width: 100%;
    height: 40%;
    overflow: hidden;
    line-height: 100%;
    text-align: right;
    color: #a9a9a9;
}

    .bottomCopy a {
        color: #a9a9a9;
    }

        .bottomCopy a:hover {
            text-decoration: underline;
            color: #f00;
        }
/*底部*/

/*弹窗*/
.popupWidth {
    width: 90%;
    height: auto;
    overflow: hidden;
    margin: 10px auto;
}

#zzWapTop {
    display: none;
}

#zzWapTop_Padding {
    display: none;
}

@media screen and (min-width:720px) and (max-width:1279px) {
    .bottomMenuSubList .close {
        display: block;
        width: 100%;
        line-height: 40px;
    }
}

@media(max-width:1000px) {
    .topMenuWord{display:none;}

    .topMenuButton {
        padding-top: 28px;
    }

    .bottom {
        display: none;
    }

    .topLogo {
        width: 100%;
        float: left;
        height: auto;
        overflow: hidden;
        vertical-align: middle;
        text-align: center;
    }

        .topLogo img {
            max-height: 50px;
        }



    #top {
        display: none;
    }

    #zzWapTop {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        margin: 0 auto;
        z-index: 999;
        display: block;
        background-color: #fff;
        padding-bottom:20px;
    }

    .zzWapTop_Logo {
        width: 40%;
        float: left;
        text-align: center;
        padding: 15px 0 0 0;
        margin: 0 auto;
        margin-left: 30%
    }

        .zzWapTop_Logo img {
            height: 50px;
        }

    .topButton {
        width: 27%;
        height: 55px;
        color: #fff;
        margin-right: 3%;
        z-index: 2147483647;
        position: fixed;
        top: 0;
        right: 0;
    }

    .menuDrop {
        width: 53%;
        height: 100%;
        right: -63%;
    }

    .menuContent {
        width: 53%;
    }

    .menuLink {
        width: 53%;
    }

    #zzWapTop_Padding {
        width: 100%;
        height: 125px;
        display: block;
    }

    .menuSubList h3 {
        line-height: 25px;
        font-size: 14px;
        transform: translateX(-50px);
        opacity: 0;
        margin-bottom:20px;
    }
}

@media(max-width:1000px) {
    .bottomCopy {
        width: 100%;
        text-align: center;
    }

    .bottomLink {
        width: 100%;
        float: left;
    }
}

.menuRight {
    right: 0;
}

.menuContentShow {
    display: table;
}
