@charset "utf-8";

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    background: #030303;
}

img {
    height: auto;
    width: auto;
    -ms-interpolation-mode: bicubic;
    display: block
}

body,
html {
    margin: 0 auto;
    font-family: 'Microsoft YaHei', '微软雅黑', '宋体', Tahoma, Arial, sans-serif;
}

.container {
    position: relative;
    margin: 0 auto;
    min-height: min(100vh, 200vw);
    background: url('./image/bg@2x.png') center top no-repeat;
    background-size: cover;
}

.support {
    position: absolute;
    height: 17px;
    left: 0;
    right: 0;
    bottom: 30px;
    background: url('./image/support@2x.png') center no-repeat;
    background-size: contain;
}

.btnGroup {
    padding-top: 90vw;
    padding-bottom: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btnGroup>div {
    width: 60vw;
    height: 16vw;
    margin-bottom: 8vw;
    background: url('./image/android@2x.png') center no-repeat;
    background-size: contain;
}

.btnGroup>div:active {
    transform: scale(0.95, 0.95);
    -webkit-transform: scale(0.95, 0.95);
    -o-transform: scale(0.95, 0.95);
    -ms-transform: scale(0.95, 0.95);
}

.btnGroup .ios {
    background-image: url('./image/ios@2x.png')
}

.modelContainer {
    display: none;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
}

.model {
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 74.4vw;
    padding: 37px 20px 20px;
    font-size: 14px;
    line-height: 160%;
    border: 1px solid rgba(22, 22, 64, 0.12);
    border-radius: 10px;
    background: #28292F;
    text-align: center;
    color: #FFFFFF;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(22, 22, 64, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(22, 22, 64, 0.08);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.model>.btn {
    width: 150px;
    height: 40px;
    margin-top: 40px;
    line-height: 40px;
    border: 1px solid #0E2363;
    border-radius: 28px;
    font-size: 16px;
    text-align: center;
    color: #1D1E24;
    background: linear-gradient(110deg, #F6E6AF 0%, #F9F4E3 100%);
    cursor: pointer;
}

@media screen and (min-width: 750px) {
    .container {
        background-image: url('./image/bg@3x.png');
    }

    .btnGroup .ios {
        background-image: url('./image/ios@3x.png')
    }

    .btnGroup .and {
        background-image: url('./image/android@3x.png')
    }
}

@media screen and (min-width: 1125px) {
    .container {
        width: 1125px;
    }

    .btnGroup {
        padding-top: 1020px;
        padding-bottom: 220px;
    }

    .btnGroup>div {
        width: 684px;
        height: 162px;
        margin-bottom: 90px;
    }
}