@charset "utf-8";

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

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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 30px;
    background: url('./bg2x.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    width: 100%;
    height: 150px;
    margin-top: 180px;
    background: url('./logo2x.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.btnGroup {
    /* position: absolute; */
		margin: 0 auto;
		margin-top: 30px;
    left: 30px;
    bottom: 100px;
    width: calc(100% - 60px);
    min-width: 290px;
}

.and,
.ios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    line-height: 50px;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    background: #FFFFFF;
    cursor: pointer;
}

.ios {
    margin-top: 25px;
    background: transparent;
    color: #FFFFFF;
}

.and {
    color: #0E2363;
}

.and>img,
.ios>img {
    margin-right: 8px;
}

.and:active,
.ios: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);
}

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

.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: 200px;
    height: 200px;
    padding: 20px 20px;
    border: 1px solid rgba(22, 22, 64, 0.12);
    border-radius: 10px;
    background-color: #fff;
    -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: 80px;
    height: 30px;
    margin-top: 30px;
    line-height: 30px;
    border: 1px solid #0E2363;
    text-align: center;
    color: #FFFFFF;
    background-color: #0E2363;
    cursor: pointer;
}

@media screen and (min-width: 750px) {
    .container {
        background: url('./bg2x.png');
        background-repeat: no-repeat;
        background-size: cover;
    }

    .logo {
        background: url('./logo3x.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}