/* 回收 */
/* 主容器样式 */
.recycle-container {
    width: 1300px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    padding: 10px;
    perspective: 1100px;
    perspective-origin: 50% 50%;
}

/* 内容包装器 */
.content-wrapper {
    width: 100%;
    position: relative;
}

/* 滚动内容区域 */
.scroll-content {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* 实际内容容器 */
.content-inner {
    position: relative;
}

/* 回收位置网格 */
.recycle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
}

/* 单个回收位置 */
.recycle-slot {
    width: 100%;
    height: 86px;
    background-image: url('../images/huishou-bg-1.png');
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    color: #ffba00;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    isolation: isolate;
    --zb-light-x: 50%;
    --zb-light-y: 50%;
}

.recycle-slot::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(
        circle at var(--zb-light-x) var(--zb-light-y),
        rgba(255,255,255,.30),
        rgba(255,56,56,.10) 27%,
        transparent 58%
    );
    mix-blend-mode: screen;
    transition: opacity .22s ease;
}

.recycle-slot.is-zb-tilting::before {
    opacity: 1;
}

/* 回收位置hover效果 */
.recycle-slot:hover {
    background-image: url('../images/huishou-bg-1.png');
    border-color: #ff1e1e;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* 回收 */