/* 时间戳样式 */
.timestamp{
    position: absolute;
    top: 5px;
    left: 10px;
    background-color: #333;
    color: #fff;
    padding: 3px;
    border:5px 10px ;
    border-radius: 8px;
    font-size: 12px;
}
/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background:url('https://img.picui.cn/free/2024/10/28/671f62f1c1a50.jpg')  no-repeat center center fixed;
    background-size: cover;
    /* overflow: hidden; */ /* 移除这行，以显示页脚 */
}

/* 加载动画 */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color:#87CEEB;
    animation: fadeOut 1s 
    ease-in-out forwards;
    animation-delay: 1s;

}

/* 添加旋转动画 */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* 容器样式 */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* 导航栏样式 */
nav {
    background-color: #333;
    padding: 10px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #87CEEB;
}

/* 个人简介模块 */
.profile {
    text-align: center;
    margin-top: 20px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.name-highlight {
    color: #87CEEB;
}

.profession {
    font-size: 20px;
    color: #FFD700;
}

.quote {
    font-size: 16px;
    margin: 10px 0;
    font-style: italic;
}

.contact-info a {
    color: #87CEEB;
}

/* 卡片样式 */
.section {
    width: 100%;
}

.section h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 10px;
    width: 120px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* 技能图标样式 */
.skill-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.skill-icons img {
    width: 40px;
    height: 40px;
}

/* 页脚样式 */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
}