/* 公共页面样式 - 保持与首页一致的深色风格 */
@font-face {
    font-family: pop;
    src: url('https://o.oozol.com/themes/fonts/Poppins.ttf') format("opentype")
}
@font-face {font-family: "iconfont";
  src: url('../fonts/iconfont.eot');
  src: url('../fonts/iconfont.eot') format('embedded-opentype'),
  url('../fonts/iconfont.woff') format('woff'),
  url('../fonts/iconfont.ttf') format('truetype'),
  url('../fonts/iconfont.svg') format('svg');
}
.iconfont {
  font-family:"iconfont" !important;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-zuobiao:before { content: "\e61b"; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "pop", "Microsoft JhengHei", -apple-system, sans-serif;
    color: #e0e0e0;
    background-color: #0a0a0a;
    background-image: url("https://o.oozol.com/themes/images/sdfgge.jpg");
    background-position: left top;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
    line-height: 1.8;
    min-height: 100vh;
}

a { color: #6ec6ff; text-decoration: none; transition: color 0.3s; }
a:hover { color: #90caf9; }

/* 顶部导航 */
.page-header {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-header .logo-link {
    display: inline-block;
}
.page-header .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s;
}
.page-header .avatar:hover {
    transform: scale(1.05);
}
.page-header h1 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}
.page-header nav a {
    color: #b0b0b0;
    margin: 0 12px;
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}
.page-header nav a:hover,
.page-header nav a.active {
    color: #ffffff;
    border-bottom-color: #6ec6ff;
}

/* 主内容 */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 区块 */
.section {
    margin-bottom: 45px;
}
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.section p {
    margin-bottom: 12px;
    color: #c0c0c0;
    font-size: 15px;
}

/* 技能标签 */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.skill-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(110, 198, 255, 0.1);
    border: 1px solid rgba(110, 198, 255, 0.25);
    border-radius: 20px;
    font-size: 13px;
    color: #6ec6ff;
    transition: all 0.3s;
}
.skill-tag:hover {
    background: rgba(110, 198, 255, 0.2);
}

/* 卡片网格 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 15px;
}
.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s;
}
.card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(110, 198, 255, 0.3);
    transform: translateY(-2px);
}
.card h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
}
.card p {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

/* 时间线 */
.timeline {
    position: relative;
    padding-left: 24px;
    margin-top: 15px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(110, 198, 255, 0.3);
}
.timeline-item {
    position: relative;
    margin-bottom: 28px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #6ec6ff;
    border-radius: 50%;
}
.timeline-item .time {
    font-size: 13px;
    color: #6ec6ff;
    margin-bottom: 4px;
}
.timeline-item h3 {
    font-size: 15px;
    color: #e0e0e0;
    font-weight: 600;
}
.timeline-item p {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

/* 联系方式列表 */
.contact-list {
    list-style: none;
    margin-top: 15px;
}
.contact-list li {
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
}
.contact-list li:hover {
    background: rgba(255,255,255,0.07);
}
.contact-list .label {
    font-size: 13px;
    color: #6ec6ff;
    min-width: 70px;
}
.contact-list .value {
    font-size: 15px;
    color: #e0e0e0;
}

/* 链接列表 */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
.link-item {
    display: block;
    padding: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
}
.link-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(110, 198, 255, 0.3);
    transform: translateY(-2px);
}
.link-item h3 {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
}
.link-item p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* 页脚 */
.page-footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.page-footer a {
    color: #888;
    font-size: 13px;
}
.page-footer p {
    color: #666;
    font-size: 12px;
    margin-top: 6px;
}

/* 响应式 */
@media (max-width: 600px) {
    .page-header { padding: 30px 15px 20px; }
    .page-content { padding: 30px 15px 40px; }
    .page-header h1 { font-size: 18px; }
    .section-title { font-size: 18px; }
    .card-grid { grid-template-columns: 1fr; }
    .link-grid { grid-template-columns: 1fr; }
}
