*{
    margin: 0;
    padding: 0;
}

html,body{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
body{
    background-image: url('../images/pc/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.mobile{
    display: none;
}
.pc{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.pc_head{
    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;
    align-items: center;
    padding-left: 50px;
    padding-right: 44px;
}
.pc_left_content{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding-top: 65px;
    padding-bottom: 47px;
    height: 100%;
    font-size:  clamp(12px, 2.5vw, 26px);
    color: #FFF500;
}
.pc_left_content img{
  width:85% ;
  max-width: 894px;
  object-fit: contain;
}
.qr_content{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.qr_box{
    width: 214px;
    height: 214px;
    background: white;
    flex-shrink: 0;
    border-radius: 13px;
    margin-right: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.code img{
    width: 189px;
    height: 189px;
    display: block;
}
.pc_right_content{
    height: 100%;
    width: 44.48%;
    max-width: 854px;
    background-image: url('../images/pc/right_img.png');
    background-repeat: no-repeat;
    background-position: bottom;
    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;
    background: #000;
    padding: 0.2rem;
}
.mb_logo{
    height: 1.1rem;
}
.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.78rem;
    margin-bottom:0.1rem ;
}
.mb_content{

    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}
.content_tips{
    position: absolute;
    width: 6.42rem;
    top: 0.17rem;
    left: 50%;
    transform: translateX(-50%);
}
.content_img{
    width:6.71rem ;
}
.mb_food{
    background: #000;
    padding:0.18rem  0.25rem 0.33rem 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{
    color:#FADC4B ;
    font-size: 0.2rem;
    text-align: center;
}
.btn_list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0;
}

.btn_list img{
    width:2.14rem;
}
@media (max-width: 768px) {
    .pc{
        display: none;
    }
    .mobile{
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
    }
    body{
        background-image: url('../images/mobile/bg.png');
    }
}