/* 项目之间的分割线样式 */
.card2_border-div {
    border: 0.5px solid black;
    width: 62px;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none; /* 默认隐藏分割线 */
    margin-right: 150px;
}

.card2_text-display {
    display: -webkit-box; /* 使用 flexbox 布局 */
    -webkit-line-clamp: 3; /* 显示的行数 */
    -webkit-box-orient: vertical; /* 垂直方向排列 */
    overflow: hidden; /* 隐藏超出内容 */
    text-overflow: ellipsis; /* 超出内容用省略号表示 */
    border: 0px solid #ddd; /* 可选：添加边框 */
    padding: 0.5rem; /* 可选：添加内边距 */
}

.card2_scene-card-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* 增加纵向间距 */
    margin-left: 210px;
}

.card2_item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0; /* 确保没有额外间距 */
}

.card2_font-size a {
    font-size: 32px;
    color: #A9A9A9;
    text-decoration: none;
    transition: color 0.2s; /* 缩短过渡时间 */
}

.card2_item:hover .card2_font-size a {
    color: #FFCD54;
}

.card2_item:hover .card2_border-div {
    display: block;
}

.card2_scene-card-num .card2_item:first-child .card2_font-size a {
    color: #FFCD54;
}