/* 回收 */
/* 主容器样式 */
.recycle-container {
    width: 1300px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    padding: 10px;
}

/* 内容包装器 */
.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: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    color: #ffba00;
}

/* 回收位置hover效果 */
.recycle-slot:hover {
    background-image: url('../images/huishou-bg-1.png');
    border-color: #1e90ff;
    transform: translateY(-3px) scale(0.95);
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
/* 回收 */