﻿.modal-body {
    display: flex;
    justify-content: space-between;
}

#members-container {
    width: 70%;
}

#members-QRCode {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.members-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap; /* 防止多个div换行 */
}

.member-box {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-align: center;
    border: 1px solid #d9d5d5;
    padding: 10px;
    width: 200px;
    height: 250px;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #ffffff; /* 使用淡黄色背景 */
    box-shadow: 0 2px 5px rgba(240, 240, 240, 0.2);
}

    .member-box:hover {
        background-color: #fff8dc;
    }

    .member-box div:first-child {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .member-box div:last-child {
        font-size: 16px;
        color: #666;
    }

/* 货币符号样式 */
.currency {
    font-size: 16px;
    vertical-align: bottom; /* 设置货币符号显示在数字下方 */
    color: #4D0819;
}

.currencyPay {
    font-size: 16px;
    color: #4D0819;
}

/* 价格数字样式 */
.amount {
    font-size: 34px; /* 价格数字比货币符号大 */
    font-weight: bold; /* 加粗显示 */
    color: #4D0819;
}

.member-select {
    background-color: #FFD37A;
    border: none;
}

    .member-select:hover {
        background-color: #FFD37A;
        border: none;
    }
