About
/* 基础样式 */
.profile-header {
text-align: center;
padding: 3rem 0;
background: linear-gradient(135deg, #2c3e50, #3498db);
color: white;
border-radius: 0 0 20px 20px;
margin-bottom: 2rem;
}
.avatar {
width: 150px;
height: 150px;
border-radius: 50%;
border: 5px solid rgba(255,255,255,0.2);
margin-bottom: 1.5rem;
}
/* 技术领域展示 */
.tech-stack {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.tech-card {
background: white;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}
/* 社交媒体链接 */
.social-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 2rem;
}
.social-link {
color: #2c3e50;
font-size: 1.8rem;
transition: transform 0.3s ease;
}
.social-link:hover {
transform: translateY(-3px);
}
/* 响应式设计 */
@media (max-width: 768px) {
.tech-stack {
grid-template-columns: 1fr;
}
}

AI Development Engineer: Lao Jin
Focused on Machine Learning Algorithm Implementation and Industrial AI System Deployment
🤖 Technical Expertise
- Deep Learning Framework Development
- Natural Language Processing
- Edge Computing Deployment
- MLOps Practices
📚 Knowledge Sharing
- Weekly Technical Articles
- Open Source Project Analysis
- AI System Architecture Design
- Model Optimization Techniques