﻿/* 全局禁止非输入类元素出现光标、禁止编辑、禁止选中 */
*:not(input):not(textarea):not(select) {
    /*cursor: default !important;*/ /* 鼠标样式恢复默认，不显示文字光标 */
    user-select: none !important; /* 禁止选中文字，从根源杜绝光标 */
    -webkit-user-select: none !important;
    pointer-events: auto !important; /* 保留点击功能，不影响按钮/链接 */
    outline: none !important; /* 禁止外边框光标 */
}

/* 确保输入框正常使用 */
input, textarea, select {
    cursor: text !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
}

a,.cursor-pointer,.cursor-pointer img {
    cursor: pointer !important;
}
.logo {
    width: 100px !important;
}
.loginbtn {
    margin-right:10px;
}
.masonry-item a {
    cursor: pointer !important;
}
.masonry-item a img{
    cursor: pointer !important;
}