body {
    font-family: "Source Code Pro", serif;
}

.main-content {
    /*padding-top: 96px;*/
    min-height: 100vh;
}

[data-bs-theme="dark"] {
    /*color-scheme: unset;*/
    /*--bs-body-bg: var(--bs-black);*/
    /*--bs-tertiary-bg: #191919;*/
    --bs-tertiary-bg: #161324;
    /*--bs-body-bg: rgb(17, 19, 25);*/
    --bs-body-bg: #0b0019;
    /*--bs-tertiary-bg: rgb(26, 28, 34);*/
    /*--active-color: rgb(28, 199, 73);*/
    --active-color: #ffff13;
    /*--active-color: #e13100;*/
    /*--hero-shallow: linear-gradient(78.83deg, #000, transparent 61.46%), linear-gradient(1turn, #000, transparent 48.44%, rgba(0, 0, 0, .4));*/
    --hero-shallow: linear-gradient(78.83deg, rgb(17, 19, 25), transparent 61.46%), linear-gradient(1turn, rgb(17, 19, 25), transparent 48.44%, rgba(0, 0, 0, .4));


}

/*.btn-secondary {*/
/*    --bs-btn-bg: #424242;*/
/*    --bs-btn-border-color: #424242;*/
/*    --bs-btn-hover-bg: #6a6868;*/
/*    --bs-btn-hover-border-color: #6a6868;*/
/*    --bs-btn-active-bg: #8f8b8b;*/
/*    --bs-btn-active-border-color: #8f8b8b;*/
/*}*/


.pill-link {
    background-color: rgb(35, 37, 43);
    border: none;
}

.pill-link:hover {
    color: var(--active-color);
}

.pill-link-active {
    color: var(--active-color);
    pointer-events: none;
}


.line-clamp-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-clamp-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-clamp-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.aspect-square {
    aspect-ratio: 1/1;
}

.aspect-backdrop, .aspect-video {
    aspect-ratio: 16/9;
}

.aspect-poster {
    aspect-ratio: 2/3;
}

.form-control:focus {
    box-shadow: none;
}

.fs-9px {
    font-size: 9px;
}

.fs-10px {
    font-size: 10px;
}

.fs-11px {
    font-size: 11px;
}

.fs-12px {
    font-size: 12px;
}

.fs-13px {
    font-size: 13px;
}

.fs-14px {
    font-size: 14px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inset-0 {
    inset: 0;
}

.animate {
    transition: all;
    transition-duration: .3s;
}

.border-t {
    border-top: 1px solid hsla(0, 0%, 100%, .2);
}

.border-b {
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
}

.divider {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.text-current {
    color: currentColor;
}

.link_style_1 {
    font-size: 11px;
    color: currentColor;
    text-decoration: none;
}

.link_style_1:hover {
    color: hsla(0, 0%, 100%, .75);
}


/* loader */
@keyframes square-spin {
    25% {
        transform: perspective(100px) rotateX(180deg) rotateY(0);
    }
    50% {
        transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    }
    75% {
        transform: perspective(100px) rotateX(0) rotateY(180deg);
    }
    100% {
        transform: perspective(100px) rotateX(0) rotateY(0);
    }
}

.square-spin > div {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    width: 50px;
    height: 50px;
    background: var(--active-color);
    -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
    animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

/*用户头像*/
.user-box {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all;
    transition-duration: .1s;
    border: .37rem solid transparent;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
}

.user-box:hover {
    border-color: rgb(255 255 255 / 0.05);;
}

.user-box-container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    background-color: var(--bs-purple);
    font-weight: bold;
}


.icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition-duration: .1s;
    transition: all;
}

.icon-btn:hover {
    background-color: rgb(255 255 255 / 0.1);
}


/* bootstrap nav-link */
.nav-link {
    font-weight: 700;
    color: currentColor;
}

.nav-link:hover {
    color: var(--active-color) !important;
}

.nav-link.active {
    font-weight: 900;
    color: var(--active-color) !important;
}

.bg-tertiary {
    background: var(--bs-tertiary-bg);
}

/*nav透明阴影效果*/
.nav-opacity-bg {
    background: linear-gradient(180deg, rgba(0, 0, 0, .8) .98%, rgba(0, 0, 0, .4) 59.23%, rgba(0, 0, 0, .2) 78.16%, rgba(0, 0, 0, .0001) 96.12%);
}

.carousel-height {
    aspect-ratio: 1/1;
}

@media (min-width: 576px) {
    .carousel-height {
        aspect-ratio: 16/9;
    }
}

@media (min-width: 992px) {
    .carousel-height {
        aspect-ratio: 16/7.2;
    }
}