.style2 {
    position: relative;
    text-align: center;
}

.style2.theme1 {
    --theme-color: #4287FF;
}

#eImgList {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 40px 40px 240px;
}

#eImgList img {
    display: block; /* 避免默认的 inline */
}

.style2 .logo {
    position: absolute;
    display: block;
    top: 33%;
    margin-top: -80px;
    left: 50%;
    margin-left: -55px;
    width: 110px;
    height: 152px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.style2 .container {
    position: fixed;
    width: 100%;
    max-width: 640px;
    min-width: 320px;
    bottom: 0;
    background-color: #ff6a99;
    padding: 30px 0;
    border-radius: 40px 40px 0 0;
}

.container > div {
    margin-bottom: 20px;
}

.style2 .version {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.style2 .tips {
    margin-top: 2px;
    font-size: 14px;
    color: #9E9E9E;
    text-align: center;
    font-weight: normal;
}

.style2 .btn {
    box-sizing: border-box;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    background: var(--theme-color);
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    vertical-align: -3px;
    display: none;
}

.style2 .btn-group {
    width: 76%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.style2 .btn-group .btn-a {
    flex: 1;
}

.style2 .icon {
    width: 100%;
}

.style2 .btn .ios {
    display: flex
}

.style2 .btn svg {
    position: relative;
    left: auto;
    margin-right: 10px;
}

.style2 .copyright {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #8e8e8e;
}