.header {
    width: 100%;
    padding: 15px 35px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.header:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: inherit;
    filter: blur(20px);
    /* z-index: 2; */
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;

}

nav .left {
    display: flex;
    align-items: center;
}

nav .left img {
    width: 67px;
}


nav .left ul {
    display: flex;
    align-items: center;
    padding-left: 43px;
}

nav .left ul li {
    margin-right: 40px;
}

nav .left ul li a {
    color: #fff;
    font-size: 18px;
}

nav .left ul li:hover a {
    font-weight: bold;
}

nav .left ul .active a {
    font-weight: bold;
}

nav .right {
    display: flex;
    align-items: center;
    position: relative;
}

nav .right .download a img {
    width: 100px;
}

nav .right .item {
    margin-left: 30px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    position: relative;
}


nav .right .item a {
    color: #fff;
    display: flex;
    align-items: center;
}

nav .right .item a span {
    padding-right: 10px;
}

nav .right .item img {
    width: 10px;
}





nav .right .dropDown {
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 102;
    width: 120px;
    /* height: 175px; */
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    display: none;
}

nav .right .dropDown .downItem {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgb(102, 102, 102);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* header {
    display: none;
} */

@media screen and (max-width: 800px) {

    .header {
        width: 100%;
        padding: 0;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        overflow:visible;
    }

    .header:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: inherit;
        filter: blur(20px);
        /* z-index: 2; */
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        width: 100%;
        z-index: 6;
        position: relative;
    }

    header .left {
        display: flex;
        align-items: center;
    }

    header .left .nav {
        display: flex;
        align-items: center;
        position: relative;
    }

    header .left .nav img {
        width: 20px;
    }
    header .left .nav .mobileNav{
        position: absolute;
        top: 25px;
        left: 0;
        padding:0 10px 20px;
        background: #fff;
        display: none;
        width:200px;
        /* height:351px; */
        border-radius: 5px;
    }
    header .left .nav .mobileNav .navItem{
        margin-top: 20px;
    }
    header .left .nav .mobileNav .navItem a{
        font-size: 18px;
        color: rgb(102,102,102);
    }
    header .left .center{
        margin-left:24px;
    }
    header .left .center img{
        width:51px;
    }
    header .right{
        display:flex;
        align-items: center;
    }
    header .right .download a img{
        width:100px;
    }
    header .right .lang{
        position: relative;
        margin-left:18px;
    }
    header .right .lang a{
        display:flex;
        align-items: center;
    }
    header .right .lang a span{
        font-size:16px;
        color:#fff;
    }
    header .right .lang a img{
        width:10px;
    }

    header .right .dropDown {
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 102;
        width: 134px;
        height: 70px;
        background: #fff;
        /* background: rgba(255, 255, 255, 0.2); */
        padding: 10px 10px 0 10px;
        display: none;
    }

    header .right .dropDown .downItem {
        margin-bottom: 10px;
        font-size: 14px;
        color: rgb(102, 102, 102);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .right .dropDown .downItem span {
        width: 9px;
        height: 9px;
        background: #6c45e3;
        border-radius: 50%;
        flex-shrink: 0;
        display: none;
    }

    header .right .dropDown .select span {
        display: block;
    }

    header .right .active {
        border-bottom: 5px solid rgb(108, 69, 227);
    }



    header .right {
        position: relative;
    }

    header .right img {
        width: 25px;
    }



}