@font-face{
font-family:'MyFont';
src:url('../zt.ttf') format('truetype');
}

*{margin:0;padding:0;box-sizing:border-box}
body{
background:#f6f8fb;
font-family:'MyFont','Microsoft YaHei',sans-serif;
color:#0f172a;
}
.container{
max-width:1400px;
margin:auto;
padding:24px;
display:grid;
grid-template-columns:340px 1fr;
gap:24px;
}
.sidebar,.card{
background:#fff;
border-radius:24px;
padding:30px;
box-shadow:0 8px 30px rgba(0,0,0,.05);
}
.avatar{
width:220px;
height:220px;
object-fit:cover;
border-radius:28px;
display:block;
margin:auto;
}
h1{text-align:center;margin:20px 0 10px}
.role{text-align:center;color:#2563eb}
.quote{
margin-top:20px;
padding:16px;
background:#f8fafc;
border-radius:16px;
line-height:1.8;
color:#64748b;
}
.info,.contact{
margin-top:24px;
line-height:2.2;
}
.content{
display:flex;
flex-direction:column;
gap:24px;
}
.card h2{
margin-bottom:20px;
}
.skill{
margin-bottom:18px;
}
.skill div:first-child{
display:flex;
justify-content:space-between;
}
.bar{
height:8px;
background:#e5e7eb;
border-radius:99px;
margin-top:8px;
overflow:hidden;
}
.bar i{
display:block;
height:100%;
background:#2563eb;
border-radius:99px;
}
ul{
padding-left:20px;
line-height:2;
}
@media(max-width:768px){
.container{
grid-template-columns:1fr;
}
.avatar{
width:180px;
height:180px;
}
}
