﻿.swiper-slide {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/*Dark主题时鼠标移动上去的效果*/
.DarkHover {
    background: none;
    transition: background-color 0.2s ease; /* 设置过渡效果 */

    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom-style: dotted;
    border-bottom-color: #aaaaaa;
    border-bottom-width: 1px;
}

    .DarkHover:hover {
        background-color: #495057;
        transition: background-color 0.2s ease; /* 设置过渡效果 */
    }


.badge {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-weight: normal !important;
}


/* 遮罩层 */
.loading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明黑色 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050; /* 确保在最上层 */
    display: none; /* 默认隐藏 */
}
