* {
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-image: url("../images/pc/bg.png");
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
}

.mobile {
    display: none;
}

.pc {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pc_head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 27px 50px;
}

.pc_head_rght {
    width: 24%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pc_logo {
    width: 16%;
    object-fit: contain;
}

.w_4 {
    width: 8.6%;
}

.pc_head_rght a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: hidden;
}

.pc_head_rght a img {
    width: 100%;
    object-fit: contain;
}

.pc_content {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-left: 0.3rem;
}

.pc_left_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.pc_left_content img {
    width: 4.96rem;
    height: 1.89rem;
    object-fit: contain;
    transform: translateY(-0.7rem);
}

.qr_content {
    position: absolute;
    bottom: 0.645rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8.33rem;
    height: 1.36rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: url('../images/pc/code_bg.png') no-repeat;
    background-size: 100% 100%;
}

.qr_content .qr_t_l>a img {
    width: 1.78rem;
    height: 0.5rem;
}

.qr_content .qr_t_l .pc_android>img {
    margin-top: 0.15rem;
}

.qr_box {
    flex: 0 0 auto;
    margin-left: 0.16rem;
    width: 1.075rem;
    height: 1.075rem;
    background: white;
    flex-shrink: 0;
    border-radius: 0.1rem;
    margin-right: 0.186rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.code {
    width: 1rem;
    height: 1rem;
}

.code img {
    width: 1rem;
    height: 1rem;
    height: auto;
    display: block;
}

.pc_right_content {
    width: 4.05rem;
    height: 100%;
    margin-right: 0.4rem;
    background-image: url("../images/pc/right_img.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
    cursor: pointer;
}

a:hover {
    color: inherit;
}

a:visited {
    color: inherit;
}

a:focus {
    outline: none;
}

/* 移动端 */
.mb_head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem;
}

.mb_logo {
    height: 0.8rem;
}

.mb_head_rght {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.head_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.24rem;
    color: #fff !important;
}

.ml24 {
    margin-left: 0.24rem;
}

.head_btn img {
    width: 0.82rem;
}

.mb_content {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}


.content_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.buttom_img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.mb_food {}

.mb_food .mb_bottom {
    padding: 0 0.25rem 0.45rem 0.25rem;
}

.mb_food_text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mb_food_text img {
    width: 3.29rem;
}

.mb_tips {
    font-size: .26rem;
    font-stretch: normal;
    font-style: normal;
    text-align: center;
    color: #e1fe76;
}

.btn_list {
    display: flex;
    flex-direction: row;
    /* gap: 0.5rem; */
    gap: 0.2rem;
    align-items: center;
    justify-content: space-between;
    margin-block-end: 0.2rem;
}

.btn_list>a {
    flex: 1;
    display: block;
}

.btn_list a img {
    width: 100%;
    overflow: hidden;
    object-fit: contain;
}

@media (max-width: 768px) {
    .pc {
        display: none;
    }

    body {
        background-image: url("../images/mobile/bg.png");
    }

    .mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        height: 100%;
        width: 100%;
    }
}