/* 自定义样式补充 */
.page-section {
    display: none;
    min-height: calc(100vh - 80px);
}

.page-section.active {
    display: block;
}

.modal {
    display: none;
}

.modal.show {
    display: flex;
}

/* 标签页导航按钮激活状态 */
.nav-link-tab {
    text-white: #ffffff;
}

/* 隐藏滚动条但保留功能 */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 轮播图样式 */
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-indicator {
    transition: all 0.3s;
}

.carousel-indicator.active {
    opacity: 1;
    transform: scale(1.2);
}

.card {
    background-image: linear-gradient(0deg, rgb(255, 255, 255), rgb(243, 245, 248));
    box-shadow: rgba(55, 99, 170, 0.1) 8px 8px 20px 0px, rgb(255, 255, 255) -8px -8px 20px 0px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    border-radius: 10px;
}

/* 遮罩层圆形透明效果 */
#maskCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

:root {
    --duration: 15s;
}

body {
    background: #131520;
    /* overflow: hidden; */
}

/*Dev*/
.dev {
    font-family: "Poppins", sans-serif;
    position: fixed;
    font-size: clamp(8px, 3vw, 14px);
    bottom: 1vw;
    left: 1vw;
    padding: 1em;
    color: #111;
    background-color: white;
    border-radius: 25px;
    cursor: pointer;
    z-index: 100;
}

.dev a {
    text-decoration: none;
    font-weight: bold;
    color: #111;
    transition: ease all 0.3s;
}

.dev a:hover {
    color: #ef5350;
    text-decoration: underline;
}

.dev span {
    display: inline-block;
    transition: ease all 0.3s;
    color: #ef5350;
}

.dev span:hover {
    transform: scale(1.2);
}

/* 背景轮播样式 */
.computer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}