/* 微信支付弹窗的整体容器 */
.wechat-payment-modal {
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
    background-color: #f7f7f7;
}

/* 订单信息部分 */
.wechat-payment-modal .order-info {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wechat-payment-modal .order-info p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.wechat-payment-modal .order-info p span {
    font-weight: bold;
    color: #000;
}

/* 二维码容器 */
.wechat-payment-modal .qrcode-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 状态文本 */
.wechat-payment-modal .status-text {
    font-size: 16px;
    font-weight: bold;
    color: #4CAF50; /* 绿色 */
    margin-bottom: 20px;
}

.wechat-payment-modal .status-text .error {
    color: #F44336; /* 红色 */
}

/* 按钮容器 */
.wechat-payment-modal .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* 按钮样式 */
.wechat-payment-modal button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.wechat-payment-modal .btn-refresh {
    background-color: #007bff; /* 蓝色 */
    color: white;
}

.wechat-payment-modal .btn-refresh:hover {
    background-color: #0056b3;
}

.wechat-payment-modal .btn-close {
    background-color: #f44336; /* 红色 */
    color: white;
}

.wechat-payment-modal .btn-close:hover {
    background-color: #d32f2f;
}

.wechat-payment-modal .expire-tip {
    font-size: 12px;
    color: #999;
}