/* 主容器 1300px 版心 */
.scroll-wrapper {
    width: 1300px;
    position: relative;
    background: url(/index/images/bg-4.png) no-repeat center center / 100%;
    border-radius: 40px;
    padding: 40px 0;
    margin: 0 auto;
    transition: all 0.2s;
}

.applicant-organization-list{
    margin-top: 50px;
}

.applicant-organization-list section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 0 auto;
    width: 1300px;
    height: 100%;
    background: linear-gradient(90deg, #f9f9f9, rgba(249, 249, 249, 0) 50%, #f9f9f9);
}

/* 两侧柔光渐变 (视觉增强) */
.fade-mask {
    position: absolute;
    top: 40px;
    width: 161px;
    height: 119px;
    pointer-events: none;
    z-index: 12;
}
.mask-left {
    left: 0;
}
.mask-right {
    right: 0;
}

.applicant-organization-list > section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 0 auto;
    width: 1300px;
    height: 100%;
    background: url(/index/images/bg-3.png) no-repeat center / 100%;
}

/* 主视口容器 */
.scroll-container {
    width: 1300px;
    height: 410px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

/* 滚动列表 — GPU加速 */
.scroll-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 1300px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1200px;
}

/* 基础条目样式：每一行包含两个公司卡片 */
.scroll-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 1300px;
    margin-bottom: 5px;
    padding: 0 20px;
    box-sizing: border-box;
    background: none !important;
    transition: all 0.32s cubic-bezier(0.2, 0.85, 0.4, 1.05);
    transition-property: height, opacity;
}

/* 单个公司卡片 */
.company-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

/* 占位卡片（奇数个数最后一个不可见） */
.company-card.placeholder {
    visibility: hidden;
    background: transparent;
    box-shadow: none;
}

/* 卡片背景图片 */
.company-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

/* 公司名称样式 */
.company-name {
    position: relative;
    z-index: 2;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    color: #1075c8;
    transition: all .8s;
}

/* ---------- 三大视差样式 ---------- */
/* 大样式（中央聚焦） */
.scroll-item.large {
    height: 85px !important;
}
.scroll-item.large .company-name {
    font-size: 24px;
    line-height: 1.2;
}
.scroll-item.large .company-card {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 20px rgba(0, 112, 200, 0.15);
    font-weight: 700;
}

/* 中样式（次级） */
.scroll-item.medium {
    height: 85px !important;
}
.scroll-item.medium .company-name {
    font-size: 18px;
    opacity: 0.85;
}
.scroll-item.medium .company-card {
    background: rgba(255, 255, 255, 0.85);
}

/* 小样式（远景虚化） */
.scroll-item.small {
    height: 85px !important;
}
.scroll-item.small .company-name {
    font-size: 14px;
    opacity: 0.7;
}
.scroll-item.small .company-card {
    background: rgba(255, 255, 255, 0.7);
}

/* 确保所有元素宽度一致 */
.scroll-container,
.scroll-list,
.scroll-item {
    width: 1300px;
}

/* 鼠标悬停时暂停动画反馈 */
.scroll-container.pause-animation .scroll-list {
    transition: none;
}

/* 隐藏滚动条 */
.scroll-container::-webkit-scrollbar {
    display: none;
}