/* 桌面端专用 */
@media (hover: hover) and (pointer: fine) {
    /* 基础光标 */
    body {
        cursor: url(https://cos.cdn.azpay.cn/uploads/2021/11/28/arrow.cur), auto !important;
    }

    /* 交互元素 */
    a,
    button,
    input[type="button"],
    input[type="submit"],
    select,
    summary,
    [role="button"],
    [onclick],
    [tabindex]:not([tabindex="-1"]) {
        cursor: url(https://cos.cdn.azpay.cn/uploads/2021/11/28/btn.cur), pointer !important;
    }

    /* 图片特殊处理 */
    img {
        cursor: url(https://cos.cdn.azpay.cn/uploads/2021/11/28/btn.cur), default !important;
    }

    /* 禁用状态 */
    [disabled] {
        cursor: not-allowed !important;
    }
}

/* 添加加载状态 */
[aria-busy="true"] {
    cursor: wait !important;
}

/* 文本选择光标 */
::selection {
    cursor: text !important;
}

/* 拖拽区域 */
[draggable="true"] {
    cursor: grab !important;
}

[draggable="true"]:active {
    cursor: grabbing !important;
}





/* 现代弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}