/* --------------------------------------------- */
/* Common Style */
body {
    padding: 0;
    margin: 0;
    font-family:Microsoft YaHei, PingFangSC-Regular, sans-serif,Arial;
}

.content {
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, rgb(34, 68, 76), rgb(12, 52, 61));
    color: #1F434B;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-top: 20px;
    width: 80%;
    max-width: 500px;
}

.tip {
    color: rgb(249, 191, 74);
    font-size: 20px;
    font-weight: bold;
    margin-top: 50px;
}

.decoration-view {
    width: 80%;
    max-width: 500px;
    position: relative;
    flex-grow: 1;
}

.decoration-image {
    width: 60%;
    max-width: 300px;
    position: absolute;
    right: 0;
    bottom: 20px;
}


.download-btn {
    width: 80%;
    max-width: 500px;
    background-color: rgb(249, 191, 74);
    font-size: 25px;
    font-weight: bold;
    padding: 15px 0;
    text-align: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-bottom: 100px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-appearance:none;
}

/* --------------------------------------------- */
/* Wechat Tip Style */
.wxTint {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-size: cover;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
}

.wxImg {
    margin-top: 50px;
    width: 60%;
    max-width: 300px;
}