.gradient-text {
    background-image: linear-gradient(90deg, rgba(42, 130, 228, 1) 27.08%, rgba(107, 165, 232, 1) 100%);
    -webkit-background-clip: text; /* 对于旧的Webkit浏览器 */
    background-clip: text;
    color: transparent; /* 使文字颜色透明，以显示背景 */
}

.gradient-white-text {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 42.36%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text; /* 对于旧的Webkit浏览器 */
    background-clip: text;
    color: transparent; /* 使文字颜色透明，以显示背景 */
}

.gradient-bg {
    background-image: linear-gradient(90deg, rgba(42, 130, 228, 1) 27.08%, rgba(107, 165, 232, 1) 100%);
}
.table-item {
    border-top: 1px solid #D1D5DB;
    border-left: 1px solid #D1D5DB;
    padding: 0.5rem;
}
.shadow-left {
    box-shadow: 
    -6px 0 3px rgba(0, 0, 0, 0.08),
    -12px 0 6px rgba(0, 0, 0, 0.12);
}
.scrollbar-thick::-webkit-scrollbar {
    height: 1rem;
}

@media screen and (min-width: 1400px) {
    /* 强制 Swiper 容器居中 */
    .nexusOrder .swiper-wrapper {
        justify-content: center !important;
        margin: 0 auto;
    }
}