:root {
--eco-green-start: #4CAF50; /* A vibrant, positive green */
--eco-green-end: #2E7D32; /* A deeper, trustworthy green */
--text-color: #333;
--light-text-color: #555;
--bg-color: #ffffff; /* Clean white background */
--section-padding: 40px 20px;
--animation-duration: 0.8s;
}
.eco-recycling-line-container {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden; /* Prevent horizontal scroll issues from animations */
background-color: var(--bg-color); /* Ensuring container has a background */
}
.eco-recycling-line-container h2,
.eco-recycling-line-container h3,
.eco-recycling-line-container h4,
.eco-recycling-line-container h5 {
margin-top: 1.5em;
margin-bottom: 0.8em;
color: var(--eco-green-end);
}
.eco-recycling-line-container h2 {
font-size: 2.8em; /* Consider reducing if still too cramped, e.g., 2.5em */
font-weight: 600;
text-align: center;
padding: 40px 20px 20px;
background: linear-gradient(135deg, var(--eco-green-start), var(--eco-green-end));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-top: 0; /* Remove top margin for the first heading */
line-height: 1.3; /* Added to prevent overlap on text wrap */
}
.eco-recycling-line-container h3 {
font-size: 2em;
font-weight: 500;
border-bottom: 2px solid var(--eco-green-start);
padding-bottom: 0.3em;
display: inline-block; /* To make border fit content */
}
.eco-recycling-line-container h4 {
font-size: 1.6em;
font-weight: 500;
}
.eco-recycling-line-container h5 {
font-size: 1.3em;
font-weight: 500;
/* Green accent for component titles */
background: linear-gradient(to right, var(--eco-green-start) 0%, var(--eco-green-end) 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
display: inline-block; /* Make gradient only cover text */
}
.eco-recycling-line-container h5 a,
.eco-recycling-line-container h5 a span {
background: none;
-webkit-background-clip: unset;
background-clip: unset;
color: var(--eco-green-end); /* Ensure link color is consistent */
text-decoration: none;
transition: color 0.3s ease;
}
.eco-recycling-line-container h5 a:hover,
.eco-recycling-line-container h5 a:hover span {
color: var(--eco-green-start);
text-decoration: underline;
}
.eco-intro-section,
.eco-process-section,
.eco-components-section,
.eco-benefits-section,
.eco-tech-specs-section,
.eco-gallery-section {
padding: var(--section-padding);
max-width: 900px;
margin: 0 auto;
}
.eco-recycling-line-container p,
.eco-recycling-line-container li {
font-size: 1.05em;
color: var(--light-text-color);
margin-bottom: 1em;
}
.eco-recycling-line-container ul {
list-style-type: disc;
padding-left: 25px;
}
.eco-recycling-line-container strong {
color: var(--eco-green-end);
font-weight: 600;
}
.eco-recycling-line-container blockquote {
border-left: 4px solid var(--eco-green-start);
padding-left: 20px;
margin: 20px 0;
font-style: italic;
color: var(--light-text-color);
background-color: #f9f9f9; /* Light background for quote */
border-radius: 0 8px 8px 0;
}
.eco-recycling-line-container .wp-table-5 { /* Targeting the specific table ID */
width: 100%;
border-collapse: collapse;
margin: 25px 0;
font-size: 0.95em;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
border-radius: 8px;
overflow: hidden; /* For rounded corners on table */
}
.eco-recycling-line-container .wp-table-5 th,
.eco-recycling-line-container .wp-table-5 td {
padding: 12px 15px;
border: 1px solid #dddddd;
text-align: left;
}
.eco-recycling-line-container .wp-table-5 thead tr {
background: linear-gradient(135deg, var(--eco-green-start), var(--eco-green-end));
color: #ffffff;
text-align: left;
font-weight: bold;
}
.eco-recycling-line-container .wp-table-5 tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.eco-recycling-line-container .wp-table-5 tbody tr:hover {
background-color: #e6ffe6; /* Light green on hover */
}
.eco-recycling-line-container .wp-image-7081 {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
margin-top: 20px;
display: block; /* Center image if margin auto is used */
margin-left: auto;
margin-right: auto;
}
/* Scroll Animation Elements */
.eco-scroll-reveal {
opacity: 0;
transform: translateY(50px);
transition: opacity var(--animation-duration) ease-out, transform var(--animation-duration) ease-out;
will-change: opacity, transform; /* Performance hint for browser */
padding: 20px;
margin-bottom: 20px;
border-radius: 12px;
background-color: #fdfdfd; /* Slightly off-white for cards */
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.eco-scroll-reveal.is-visible {
opacity: 1;
transform: translateY(0);
/* Subtle gradient border effect on reveal */
position: relative; /* Needed for pseudo-element */
}
/* Adding a subtle gradient accent to revealed sections */
.eco-scroll-reveal.is-visible::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px; /* Width of the gradient accent */
height: 100%;
background: linear-gradient(to bottom, var(--eco-green-start), var(--eco-green-end));
border-radius: 12px 0 0 12px;
opacity: 0; /* Start hidden */
animation: eco-reveal-accent var(--animation-duration) ease-out forwards;
animation-delay: 0.2s; /* Slight delay for the accent */
}
@keyframes eco-reveal-accent {
to {
opacity: 1;
}
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.eco-recycling-line-container h2 {
font-size: 2.2em; /* Adjusted for mobile */
}
.eco-recycling-line-container h3 {
font-size: 1.7em;
}
.eco-recycling-line-container h4 {
font-size: 1.4em;
}
.eco-recycling-line-container h5 {
font-size: 1.2em;
}
.eco-recycling-line-container p,
.eco-recycling-line-container li {
font-size: 1em;
}
.eco-intro-section,
.eco-process-section,
.eco-components-section,
.eco-benefits-section,
.eco-tech-specs-section,
.eco-gallery-section {
padding: 20px 15px;
}
.eco-scroll-reveal {
padding: 15px;
}
}
Pioneering Sustainable Solutions for Plastic Waste
The Challenge: Tackling Bulky Plastic Waste
High-density polyethylene (HDPE) and polypropylene (PP) are incredibly versatile plastics, found in everything from sturdy containers and pipes to everyday consumer goods. Their durability is a boon during use, but it presents a significant hurdle when it comes to disposal. These rigid plastics are often bulky, difficult to handle, and can take up considerable landfill space, posing a pressing environmental concern. Traditional disposal methods are often inefficient and miss the opportunity to recover valuable materials.
Our Solution: A Comprehensive Recycling Powerhouse
We’re thrilled to introduce our state-of-the-art HDPE and PP Rigid Plastic Shredding Recycling Line. This innovative system is meticulously engineered to transform discarded rigid plastics from problematic waste into a valuable resource. It’s more than just a machine; it’s a complete, automated solution designed for efficiency, reliability, and environmental stewardship.
Imagine taking cumbersome plastic items and, through a seamless process, converting them into high-quality, reusable pellets. That’s precisely what our recycling line achieves. Let’s delve into how this remarkable transformation happens:
- Initial Shredding: The journey begins as discarded HDPE and PP items are fed into the primary shredder. This robust unit breaks down large, bulky plastics into smaller, more manageable chunks.
- Conveyance: These chunks are then smoothly transported via a conveyor system to the next stage, ensuring a continuous and efficient flow.
- Intermediate Crushing: An intermediate shredder or crusher takes over, further reducing the plastic chunks into even smaller particles, preparing them for thorough cleaning.
- Intensive Cleaning: A sophisticated cleaning system goes to work, meticulously removing impurities, dirt, labels, and other contaminants. This step is crucial for the quality of the final recycled material.
- Efficient Drying: Post-cleaning, the plastic particles enter a drying system. This ensures all moisture is removed, making the material perfect for the final processing stage.
- Pelletisation: Finally, the clean, dry plastic particles are fed into a plastic pelletiser. Here, they are melted, extruded, and cut into uniform, reusable plastic pellets – ready to begin a new life in the manufacturing of new products.
The Impact: Good for the Planet, Great for Your Business
Our HDPE and PP Rigid Plastic Shredding Recycling Line isn’t just an environmental triumph; it’s a smart economic choice. By embracing this technology, businesses and communities can:
- Champion Sustainability: Significantly reduce plastic waste destined for landfills, conserving natural resources and lessening your environmental footprint.
- Lower Production Costs: Recycled plastic pellets can be a more cost-effective raw material compared to virgin plastics, leading to tangible savings in manufacturing.
- Enhance Resource Efficiency: Turn waste into a valuable commodity, contributing to a circular economy where materials are kept in use for as long as possible.
- Boost Your Green Credentials: Demonstrate a commitment to environmental responsibility, enhancing your brand reputation among increasingly eco-conscious consumers and partners.
We are genuinely excited to offer this pivotal technology. We believe it plays a crucial role in the global collective effort to protect our environment and build a more sustainable future.
Main Technical Parameters at a Glance
To give you a clearer idea of its capabilities, here are the key specifications for our recycling line. Please note that specific configurations can be tailored to meet your unique operational needs.
Input Capacity500kg/h1000kg/h2000kg/h
Space500m²700m²1000m²
Installation Power98kW150kW230kW
Water Circulation2m³2m³3m³
Compresser air0.5m³0.5m³0.5m³
The capacity of this versatile recycling system typically ranges from 500 kg/hr to an impressive 2000 kg/hr.
Through meticulous grading, crushing, and washing, this line yields clean, high-quality, reusable materials primed for downstream applications.
Inside the Innovation: Key Components & Their Purpose
Our recycling line is a symphony of precision-engineered components, each playing a vital role in the transformation process. Depending on your specific application and material characteristics, the plant may include the following advanced equipment:
Visualising the Process
A glimpse into the robust engineering and design of our recycling solutions.
document.addEventListener('DOMContentLoaded', function() {
const revealElements = document.querySelectorAll('.eco-recycling-line-container .eco-scroll-reveal');
if (!revealElements.length) {
return;
}
const revealOnScroll = () => {
const windowHeight = window.innerHeight;
revealElements.forEach(el => {
const elementTop = el.getBoundingClientRect().top;
// Reveal when the element is a bit into the viewport
if (elementTop {
if (scrollTimeout) {
clearTimeout(scrollTimeout);
}
scrollTimeout = setTimeout(revealOnScroll, 50); // Adjust timeout as needed
});
});