<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BEILI Quality Control System</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}
body{
background:#f5f7fa;
color:#333;
}
.header{
background:#111827;
color:#fff;
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
}
.header h1{
font-size:28px;
letter-spacing:1px;
}
.header p{
color:#cbd5e1;
margin-top:5px;
}
.container{
width:90%;
margin:30px auto;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-bottom:30px;
}
.card{
background:#fff;
border-radius:16px;
padding:25px;
box-shadow:0 5px 15px rgba(0,0,0,0.06);
transition:0.3s;
}
.card:hover{
transform:translateY(-5px);
}
.card h2{
font-size:20px;
margin-bottom:12px;
color:#111827;
}
.card p{
line-height:1.8;
color:#6b7280;
}
.section{
background:#fff;
border-radius:16px;
padding:30px;
margin-bottom:30px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}
.section h2{
margin-bottom:20px;
font-size:26px;
color:#111827;
}
table{
width:100%;
border-collapse:collapse;
}
table th,
table td{
border:1px solid #e5e7eb;
padding:14px;
text-align:left;
}
table th{
background:#111827;
color:#fff;
}
.status-pass{
color:#16a34a;
font-weight:bold;
}
.status-warning{
color:#d97706;
font-weight:bold;
}
.status-fail{
color:#dc2626;
font-weight:bold;
}
.progress{
width:100%;
background:#e5e7eb;
border-radius:10px;
overflow:hidden;
height:12px;
margin-top:10px;
}
.progress-bar{
height:12px;
background:#111827;
width:92%;
}
.footer{
text-align:center;
padding:30px;
color:#6b7280;
}
.button{
display:inline-block;
margin-top:15px;
padding:10px 18px;
background:#111827;
color:#fff;
text-decoration:none;
border-radius:8px;
transition:0.3s;
}
.button:hover{
background:#374151;
}
@media(max-width:768px){
.header{
flex-direction:column;
align-items:flex-start;
}
}
</style>
</head>
<body>
<div>
<div>
<h1>BEILI Quality Control</h1>
<p>Professional Makeup Brush Manufacturing Quality Management System</p>
</div>
<div>
<p>ISO / OEM / ODM / QC</p>
</div>
</div>
<div>
<!-- 核心数据 -->
<div>
<div>
<h2>Incoming Material Inspection</h2>
<p>
Strict inspection of synthetic hair, aluminum ferrules,
wooden handles and packaging materials before production.
</p>
<div>
<div></div>
</div>
<a href="#">View Details</a>
</div>
<div>
<h2>Production Process Control</h2>
<p>
Each production step is monitored including hair shaping,
ferrule pressing, glue fixing and logo printing.
</p>
<div>
<div style="width:88%"></div>
</div>
<a href="#">Production Report</a>
</div>
<div>
<h2>Finished Product Inspection</h2>
<p>
Final inspection covers appearance, shedding test,
handle durability and packaging quality.
</p>
<div>
<div style="width:96%"></div>
</div>
<a href="#">QC Standards</a>
</div>
</div>
<!-- 检测标准 -->
<div>
<h2>Quality Inspection Standards</h2>
<table>
<tr>
<th>Inspection Item</th>
<th>Standard</th>
<th>Status</th>
</tr>
<tr>
<td>Brush Hair Shedding Test</td>
<td>Less than 3 hairs after pulling test</td>
<td>PASS</td>
</tr>
<tr>
<td>Ferrule Tightness</td>
<td>No loosening after pressure test</td>
<td>PASS</td>
</tr>
<tr>
<td>Logo Printing</td>
<td>No scratch or fading</td>
<td>CHECKING</td>
</tr>
<tr>
<td>Packaging Inspection</td>
<td>No damage or deformation</td>
<td>PASS</td>
</tr>
<tr>
<td>Handle Surface Finish</td>
<td>Smooth without defects</td>
<td>REWORK</td>
</tr>
</table>
</div>
<!-- 工厂优势 -->
<div>
<h2>Why Choose BEILI</h2>
<div>
<div>
<h2>15+ Years Experience</h2>
<p>
Experienced OEM & ODM manufacturer specializing in
makeup brushes and beauty tools.
</p>
</div>
<div>
<h2>Strict QC Process</h2>
<p>
Multi-step inspection system from raw materials
to finished products.
</p>
</div>
<div>
<h2>Professional Team</h2>
<p>
Dedicated QC engineers, production managers
and packaging inspectors.
</p>
</div>
</div>
</div>
<!-- 生产流程 -->
<div>
<h2>Production Workflow</h2>
<table>
<tr>
<th>Step</th>
<th>Process</th>
<th>QC Focus</th>
</tr>
<tr>
<td>01</td>
<td>Raw Material Preparation</td>
<td>Hair Quality / Ferrule Thickness</td>
</tr>
<tr>
<td>02</td>
<td>Brush Hair Shaping</td>
<td>Brush Shape Consistency</td>
</tr>
<tr>
<td>03</td>
<td>Ferrule Assembly</td>
<td>Strong Adhesion</td>
</tr>
<tr>
<td>04</td>
<td>Logo Printing</td>
<td>Clear & Durable Printing</td>
</tr>
<tr>
<td>05</td>
<td>Final Inspection</td>
<td>100% Appearance Check</td>
</tr>
</table>
</div>
</div>
<div>
© 2026 BEILI Makeup Brush Factory | Quality First · Professional Manufacturing
</div>
</body>
</html>