/* 自定义加载样式 */
.van-loading__spinner {
    width: 24px;
    height: 24px;
    border-color: #ffffff !important;
}

.van-list__loading {
    padding: 20px 0;
    color: #ffffff !important;
    font-size: 14px;
}

/* 隐藏滚动条样式 */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* 呼吸效果 */
.breathing {
    animation: orangeBreathing 3s ease-in-out infinite;
}

@keyframes orangeBreathing {
    0% {
        box-shadow: 0 0 5px rgba(230, 81, 0, 0.2), 0 0 10px rgba(230, 81, 0, 0.1);
        background-color: #1a1a1a;
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 109, 0, 0.5), 0 0 30px rgba(255, 109, 0, 0.3);
        background-color: #252525;
    }
    100% {
        box-shadow: 0 0 5px rgba(230, 81, 0, 0.2), 0 0 10px rgba(230, 81, 0, 0.1);
        background-color: #1a1a1a;
    }
}