._banner-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /*padding: 20px 0;*/

}

._banner {
    display: flex;
    position: relative;
    left: 0;
}

._banner-item {
    width: 200px;
    height: 400px;
    margin-right: 2px;
    transform: skewX(-15deg);
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
     opacity: 0.5;
}

/* 新增的图片包装元素 */
._banner-img-wrapper {
    width: 100%;
    height: 100%;
    transform: skewX(15deg); /* 反向倾斜，抵消容器的倾斜 */
    transform-origin: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    left: -15%; /* 调整图片位置，使其居中显示 */
    width: 160%; /* 增加宽度以填充因倾斜产生的空白 */
}

/* 隐藏的img元素用于预加载 */
._banner-item img {
    display: none;
}


._banner-modal {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-color));

    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;

}

._banner-logo  {
    margin-bottom: 10px;
}

._banner-logo img {
    width: 60px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

._banner-h1 {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

._banner-slogan {
    font-size: 14px;
    color: var(--text-color-6);
    margin-bottom: 20px;
}