.warn_container {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    width: 94%;
    max-width: 1800px;
    z-index: 9999;
    background-color: rgba(30, 30, 30, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 10px;
    padding: 12px 24px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Helvetica Neue', Helvetica, Tahoma, Arial, 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.5;
}
.warn_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.warn_text {
    flex: 1;
    padding-right: 20px;
}
.warn_text a {
    color: #ffdf6e;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.warn_get img {
    width: 161px;
    height: 45px;
}

@media screen and (max-width: 768px) {
    .warn_container {
        bottom: 16px;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 8px;
    }
    .warn_content {
        flex-direction: column;
        align-items: stretch;
    }
    .warn_text {
        padding-right: 0;
    }
    .warn_get {
        margin-top: 8px;
        text-align: center;
        /* text-align: center;
        padding: 6px 16px;
        font-size: 12px; */
    }
    .warn_get img {
        width: 120px;
        height: 33px;
    }
}