body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

#Bj {
    width: 360px;
    height: 512px;
    border-radius: 15px;
    background-color: white;
    /* border: 1px solid #8f8f8f; */
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 1px #ff0000; 
    animation: neon-glow 5s infinite linear; 
}
@keyframes neon-glow {
    0% {
        box-shadow: 0 0 1px #ff0000, 0 0 2px #ff0000, 0 0 3px #ff0000; 
    }
    25% {
        box-shadow: 0 0 1px #00ff00, 0 0 2px #00ff00, 0 0 3px #00ff00; 
    }
    50% {
        box-shadow: 0 0 1px #0000ff, 0 0 2px #0000ff, 0 0 3px #0000ff; 
    }
    75% {
        box-shadow: 0 0 1px #ffff00, 0 0 2px #ffff00, 0 0 3px #ffff00; 
    }
    100% {
        box-shadow: 0 0 1px #ff0000, 0 0 2px #ff0000, 0 0 3px #ff0000; 
    }
}
#arc {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -25%);
    background-color: #FF6347;
}

#Qry {
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#Qry img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.Zzb {
    color: white;
    background-color: #8500ff;
    padding: 8x 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.Payb {
    padding: 8px 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.Payb:hover {
    background-color: #ddd;
}

.Payb[data-color="#FF6347"] {
    background-color: #FF6347;
    color: white;
}

.Payb[data-color="#07C160"] {
    background-color: #07C160;
    color: white;
}

.Payb[data-color="#1678FF"] {
    background-color: #1678FF;
    color: white;
}

.Payb[data-color="#12B7F5"] {
    background-color: #12B7F5;
    color: white;
}
.Payb[data-color="#FF0000"] {
    background-color: #FF0000;
    color: white;
}
#logo {
    width: 210px;
    height: 64px;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 10px 0;
	box-shadow: 0 0 1px #ff0000;
	animation: neon-glow 5s infinite linear;
}

.bank-card-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 492px;
    background-color: white;
    border-radius: 15px;
    border: 1px solid #8f8f8f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    z-index: 1001;
}

.bank-card-popup.show {
    display: block;
}

.bank-card-popup .close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

.bank-card-popup .bank-card-info {
    margin-top: 2px;
}

.bank-card-popup .bank-card-info .bank-card-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.bank-card-popup .bank-card-info .bank-card-row img {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.bank-card-popup .bank-card-info .bank-card-row .bank-name {
    margin-right: 10px;
}

.bank-card-popup .bank-card-info .bank-card-row .bank-card-number {
    flex-grow: 1;
}

.bank-card-popup .bank-card-info .bank-card-row .copy-button {
    padding: 5px 5px;
    border: none;
    background-color: #e9e9e9;
    cursor: pointer;
    border-radius: 5px;
}

.bank-card-popup .bank-card-info .divider {
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
}

/* 新增导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    box-sizing: border-box;
    z-index: 1000;
}

.back-button {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    cursor: pointer;
}

.navbar-title {
    flex-grow: 1;
    text-align: center;
    margin: 0;
}

.link-button {
    background-color: #FF6347;
    color: white;
    padding: 5px 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #e55940;
}