/* Pay Button 支付按钮样式 */
.pay_btn {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    margin-top: auto;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    text-decoration: none;
}

.pay_btn .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 20px;
    background-color: var(--apps-primary-color);
}

.pay_btn .btn1 {
    background-color: #00264a;
    text-decoration: line-through;
    border-radius: 4px 4px 0 0;
    font-size: 12px;
    opacity: 0.7;
}

.pay_btn .btn2 {
    height: 22px;
    border-radius: 0 0 4px 4px;
}

.pay_btn:hover {
    opacity: 0.9;
}

