.category-intro-clamp {
    max-height: 60px; /* 限制最高高度 */
    overflow: hidden; /* 隐藏超出内容 */
    display: -webkit-box; /* 支持弹性盒模型 */
    -webkit-box-orient: vertical; /* 设置盒子垂直排列 */
    -webkit-line-clamp: 5; /* 设置显示的行数 */
    text-overflow: ellipsis; /* 溢出时显示省略号 */
    white-space: normal; /* 正常的白空格处理 */
}

#stage {
    position: relative;
    height: 600px; /* 你可以根据需要调整高度 */
    overflow: hidden;
    background-color: #000;
}

/* 底层 iframe */
#game-iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* 遮罩层：背景图拉伸 */
#game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center;
    z-index: 10;
    transition: opacity 0.8s ease, visibility 0.8s;

    filter: brightness(.3) blur(7px);
}

#game-ban {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 11;
}

/* 中心 Logo 图标 */
.center-logo {
    width: 120px;
    margin-bottom: 20px;
}

/* 隐藏状态 */
.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* 定义一个快速度类 */
.spinner-fast {
    animation-duration: 0.5s; /* 数值越小，速度越快 */
}