.basket_box {
    width: 75vw;
    height: 80vh;
}

.basket_title {
}

.basket_warn {
    letter-spacing: 3px;
}

#basket_Table td {
    height: 10px;
}

/* 设置表格容器 */
.table-container {
    margin-top: 7vh;
    max-height: 27.8vh; /* 根据需要调整 */
    overflow: auto;
}

/* 固定表头 */
#basket_Table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* 如果需要水平滚动 */
#basket_Table {
    margin-top: 0;
    table-layout: fixed;
    width: 100%;
}

#basket_Table td, #basket_Table th {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pay_box{
    margin-top: 6vh;
    width: 70vw;
}

.confirm_pay{
    display: none;
    justify-content: right;
    margin-top: 10vh;
    background-color: rgba(102, 102, 102, 0.22);
    height: 4.5vh;
}

.pay_button{
    margin-left: 5vw;
}

.product_id{
    display: none;
}

.qrcode{
    margin: auto;
    width: min(35vh,18vw);
    border-radius: 5%;
}

.QR_code_bg{
    display: flex;
    border-radius: 20px;
    flex-direction: column;
    margin: 1vh auto;
    width: 25vw;
    height: 65vh;
    background-color: rgb(9, 155, 39);
}

.pay_logo{
    margin-top: 4vh;
    height: 4vh;
}

.pay_logo img{
    height: 100%;
}

@media (max-width: 1300px) {
    .qrcode{
        width: 200px;
    }

    .QR_code_bg{
        width: 350px;
        height: 50vh;
        font-size: 14px;
    }
}

