	    
        /* 滚动支付提示 */

            .idjshow{width:94%; height:30px; background:#000;opacity:0.8; border-radius: 15px; line-height:30px; color:#FFF; text-align:center; margin-left:auto; margin-right:auto; z-index:99999; position:fixed; top:20px; left:3%}


        /* 悬浮按钮（默认隐藏，可按需开启） */
            .floating-button {
                position: fixed;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                width: 50px;
                height: 100px;
                background-color: orange;
                color: white;
                border: none;
                padding: 10px;
                font-size: 16px;
                text-align: center;
                cursor: pointer;
                border-radius: 5px;
                box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
                display: none;
            }
            .floating-button:hover {
                background-color: #ffa500;
            }
            
            
             /* 对号基础样式：右对齐，与原“支付”文字位置一致 */
.pay-checkmark {
    position: relative;
    width: 20px; /* 对号宽度，匹配点击区域 */
    height: 20px;
    margin-left: auto; /* 右对齐，替代原“支付”文字的位置 */
    /* 未选中时：对号透明，不显示 */
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* 选中时：显示对号 */
.pay-way-item.selected .pay-checkmark {
    opacity: 1;
}

/* 用CSS伪元素画对号（无需额外图片） */
.pay-checkmark::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid currentColor; /* 颜色继承自父元素，方便区分品牌 */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg); /* 旋转成对号形状 */
}

/* 微信支付对号：品牌绿色 */
#wxpayItem .pay-checkmark {
    color: #07c160;
}

/* 支付宝支付对号：品牌蓝色 */
#alipayItem .pay-checkmark {
    color: #1677ff;
}

/* 深色模式适配：确保对号颜色在深色下清晰 */
@media (prefers-color-scheme: dark) {
    #wxpayItem .pay-checkmark {
        color: #08d166; /* 深色模式下微信绿稍亮 */
    }
    #alipayItem .pay-checkmark {
        color: #2584ff; /* 深色模式下支付宝蓝稍亮 */
    }
}
            
            
