@charset "UTF-8";

[v-cloak] {
    display: none;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button {
    outline: none;
}

html * {
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #f8fafd;
    font-family: "Microsoft YaHei", "SimHei", "微软雅黑", "黑体";
    color: #333;
}

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-1 {
    flex: 1 1;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

#app {
    width: 100%;
    font-size: 1.4rem;
}

.none {
    height: 4rem;
    width: 100%;
    background: #fff;
}

.header {
    height: 4rem;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;

    padding: 0 3rem 0 6rem;
    background: #fff;
}

.logo-wrap {
    width: 10rem;
}

.logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.tabs {
    width: 70%;
    height: 100%;
}

.tabs .tab {
    text-align: center;
    cursor: pointer;
}

.tab.active {
    color: #446bd9;
}

.tab-slide {
    background: #f8fafd;
    color: #634e25;
}

.tab-slide>img {
    width: 100%;
    height: auto;
    display: block;
}

.fixed-title {
    width: 100%;
    text-align: center;
}

.content-title {
    width: 100%;
    line-height: 4rem;
    padding: 1rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
}

.footer {
    width: 100%;
    color: #fff;
    background: #242f4e;
    padding: 6rem 0 4rem;
    box-sizing: border-box;
}

.contact-us {
    width: 62%;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-title {
    font-size: 1.6rem;
}

.download-qrCode {
    margin-bottom: 1rem;
}

.qrCode-img {
    width: 8rem;
    height: 8rem;
    display: block;
    border-radius: .6rem;
}

.way {
    margin-bottom: 2rem;
    line-height: 2rem;
    text-align: justify;
}

.way a {
    color: #fff;
}

.way a:hover {
    color: #7e99e2;
    text-decoration: underline;
}

.icons {
    padding-top: 1rem;
}

.icons li {
    max-width: 3.4rem;
    height: 3.4rem;
    margin-right: .6rem;
    background: #fff;
    padding: .4rem;
    border-radius: .6rem;
}

.icons li:last-child {
    margin-right: 0;
}

.icons li img {
    display: block;
    width: 100%;
}

.small {
    font-size: 1.2rem;
    text-align: left;
}

/* 手机端样式 */
@media screen and (max-width: 800px) {
    .header {
        padding: 0 2rem 0 3rem;
        box-shadow: 0px 2px 5px rgba(43, 42, 102, 0.2);
    }

    .more {
        width: 1.8rem;
        height: 1.8rem;
        margin-left: 1.2rem;
    }

    .more img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .tabs {
        justify-content: flex-end;
    }

    .app-tab-mask {
        position: absolute;
        left: 0;
        top: 4rem;
        z-index: 88;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, .4);
    }

    .app-tabs {
        background: rgba(155, 173, 220, 0.9);
    }

    .app-tabs li {
        height: 4rem;
        line-height: 4rem;
        text-align: center;
        position: relative;
    }

    .app-tabs li::after {
        content: "";
        height: 1px;
        width: 80%;

        position: absolute;
        left: 50%;
        bottom: 0;

        margin-left: -40%;
        background: #75728b;
    }

    .app-tabs li:last-child::after {
        content: none;
    }

    .app-tab.active {
        color: #2755d4;
    }

    .tab-slide {
        padding-bottom: 1rem;
    }

    .footer {
        padding: 0 3rem;
    }

    .contact-us {
        padding: 0 0 2rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .contact-us>.flex-1 {
        min-width: 46%;
    }
}