html, body {
    padding: 0;
    margin: 0;
}

[v-cloak] {
    display: none;
}
h1,h2,h3,h4,h5,h6{font-weight: unset;margin: 0}
p {
    margin: 0
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    outline: none;
}
header .lang-box {
    width: 25%;
    display: flex;
    justify-content: flex-end;
}

header .lang {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    color: #231916;
    font-size: 16px;
    position: relative;
}

header .lang span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
}

header .lang span i {
    border: 3px solid;
    border-color: rgba(35, 25, 22, 0) rgba(35, 25, 22, 0) rgba(35, 25, 22, 1) rgba(35, 25, 22, 1);
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: 3px;
}

header .lang ul {
    padding: 0 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 8px 0px rgba(113, 113, 133, 0.34);
    position: absolute;
    top: 50px;
    /*left: 0px;*/
    width: 132px;
    border-radius: 10px;
    z-index: 99;
}

header .lang ul:before {
    content: '';
    position: absolute;
    top: -5px;
    /*left: 20px;*/
    border: 5px solid;
    border-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 1) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
    /*box-shadow:0px -6px 8px 0px rgba(113,113,133,0.34);*/
    transform: rotate(-45deg);
}

header .lang ul li {
    cursor: pointer;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(35, 25, 22, 1);
    border-bottom: 1px solid rgba(64, 70, 77, 0.1);
}

header .lang ul li:last-child {
    border-bottom: none;
}

@media screen and (max-width: 1200px) {
    header .lang ul:before {
        right: 14px;
    }
    header .lang ul {
        right: 0px;
    }
    .web{
        display: none !important;
    }
    header{
        padding: 20px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        background: #fff;
        z-index: 999;
    }
    /*header > ul,header > .lang-box{display: none}*/
    header .lang-box {
        margin-left: 25%;
    }
    header > button{
        background: #fff;
        outline: none;
        border: none;
        width: 36px;
        height: 36px;
        padding: 0;
    }
    header > button img{
        width: 36px;
        height: 36px;
    }
    header .logo{
        height: 38px;
    }
    header .logo img{
        height: 100%;
    }
    header > .app-ul{
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 30px 41px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    header > .app-ul ul li a{
        display: inline-block;
        height: 68px;
        padding-left: 40px;
        box-sizing: border-box;
        color: rgba(164, 166, 191, 1);
        font-size: 32px;
        line-height: 68px;
        width: 100%;
    }
    header > .app-ul ul li.active a{
        color: rgba(28, 33, 96, 1);
        padding-left: 60px;
        position: relative;
    }
    header > .app-ul ul li.active a:after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 68px;
        width: 80px;
        background: linear-gradient(90deg,rgba(255,153,0,1) 0%,rgba(255,141,0,0) 100%);
        opacity:0.25;
    }


    footer {
        background: rgba(36, 36, 36, 1)
    }

    footer > .logo, footer > ul, footer > .img {
        display: none;
    }

    footer > p {
        color: #fff;
        font-size: 10px;
        /*height: 45px;*/
        /*line-height: 45px;*/
        text-align: center;
        padding: 15px 0;
    }

    .footer-content .footer-wap{
        background-image: url("../image/dbbg@2x.png");
        background-size: 100%;
        background-repeat: no-repeat;
        height: 142px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0 20px 25px;
        box-sizing: border-box;
    }
    .footer-content .footer-wap .left{
        color: #fff;
    }
    .footer-content .footer-wap .left h1{
        font-size: 24px;
    }
    .footer-content .footer-wap .left p{
        font-size: 13px;
    }
    .footer-content .footer-wap .right{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-content .footer-wap .right .qrcode{
        box-sizing: border-box;
        border-radius: 5px;
        background: #fff;
        height: 88px;
        width: 88px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-content .footer-wap .right .qrcode img{
        width: 80px;
        height: 80px;
    }
    .footer-content .footer-wap .right p{
        color: #fff;
        font-size: 10px;
        margin-top: 3px;
    }
}


@media screen and (min-width: 1200px) {
    header .lang ul:before {
        left: 14px;
    }
    header .lang ul {
        left: 0px;
    }
    .wap{
        display: none !important;
    }
    .container {
        width: 1200px;
        margin: 0 auto;
    }

    a {
        text-decoration: none;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    header > button,header > .app-ul{
        display: none;
    }

    header > ul {
        display: flex;
        align-items: center;
        margin-left: 20px;
        /*width: 25%;*/
    }

    header > ul li {
        padding: 50px 0;
        margin-right: 83px;
    }

    header > ul li:last-child {
        margin-right: 0;
    }

    header > ul li a {
        color: rgba(157, 157, 169, 1);
        font-size: 15px;
        font-weight: bold;
    }

    header > ul li a.active {
        color: #090B27;
        position: relative;
    }

    header > ul li a.active:before {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
        height: 10px;
        width: 55px;
        background: #FFF414;
        z-index: -1;
    }

    header > .logo {
        height: 65px;
        display: flex;
        align-items: center;
    }

    header > .logo img {
        height: 65px;
        cursor: pointer;
    }



    footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        margin-bottom: 140px !important;
        margin-top: 140px !important;
        background: #fff;
    }

    footer .logo {
        height: 65px;
        width: 10%;
    }

    footer .logo img {
        height: 100%;
    }

    footer > ul {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
    }

    footer > ul li {
        font-size: 13px;
        margin-right: 107px;
        font-weight: bold;
    }

    footer > ul li:last-child {
        margin-right: 0;
    }

    footer > ul li a {
        color: rgba(157, 157, 169, 1);
        position: relative;
    }

    footer > ul li a.active {
        color: rgba(9, 11, 39, 1);
    }

    footer > ul li a.active:before {
        content: '';
        position: absolute;
        height: 2px;
        width: 20px;
        background: rgba(248, 142, 1, 1);
        bottom: -6px;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
    }

    footer .img {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 10%;
    }

    footer .img img {
        width: 40px;
        margin-left: 10px;
    }

    footer > p {
        color: rgba(91, 93, 126, 1);
        font-size: 12px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        bottom: -50px;
    }
}























































