/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5;
    background-image: url('../imgs/背景.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* 背景噪点效果 */
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    background-attachment: fixed;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 毛玻璃效果 */
.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 30px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.2);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 导航栏 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #6e8efb;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* 主内容区域 */
main {
    padding-top: 80px;
    min-height: calc(100vh - 80px - 100px); /* 减去header和footer的高度 */
}

/* 英雄区域 */
.hero {
    padding: 100px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #00000000;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.profile-img {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.small-btn {
    padding: 8px 15px;
    font-size: 14px;
}

.primary-btn {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}

.primary-btn:hover {
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.6);
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #6e8efb;
    border: 1px solid rgba(110, 142, 251, 0.3);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(110, 142, 251, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(110, 142, 251, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* 亮点部分 */
.highlights {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
}

.highlight-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.2), rgba(167, 119, 227, 0.2));
    font-size: 32px;
    color: #6e8efb;
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.highlight-card p {
    color: #666;
}

/* 最新项目部分 */
.recent-projects {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.recent-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #00000000;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.projects-showcase.single-project {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}


.project-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
    padding: 15px;
    transition: all 0.4s ease;
}

.project-img {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
}

.center-btn {
    text-align: center;
    margin-top: 20px;
}

/* 奖项预览部分 */
.awards-preview {
    padding: 80px 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* 滚动到复制内容的起点 */
    }
}

.awards-preview {
    overflow: hidden; /* 隐藏容器外的内容 */
}

.awards-slider {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: fit-content; /* 宽度自适应内容 */
    animation: scroll 60s linear infinite; /* 应用滚动动画，速度可调 */
}

.awards-slider:hover {
    animation-play-state: paused; /* 鼠标悬停时暂停动画 */
}

.awards-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.award-slide {
    flex: 0 0 320px; /* 设置固定宽度 */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden; /* 隐藏溢出内容以匹配圆角 */
    display: flex;
    flex-direction: column;
}

.award-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.award-slide h3 {
    padding: 15px;
    margin: 0;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.award-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.award-slide h3 {
    font-size: 18px;
    color: #333;
}

/* 页脚 */
footer {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 30px rgba(31, 38, 135, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/背景.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(110, 142, 251, 0.3);
    transform: scale(1);
    transition: all 0.4s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
    text-shadow: 0 5px 15px rgba(110, 142, 251, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e8efb;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.15);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.8), rgba(167, 119, 227, 0.8));
    color: white;
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.copyright {
    color: #666;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(31, 38, 135, 0.05);
    transition: all 0.4s ease;
}

.copyright:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.1);
}

/* 关于页面样式 */
.about-hero {
    padding: 100px 0 80px;
    background: #00000000;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #00000000;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
    position: relative;
}

.about-img::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.5), rgba(167, 119, 227, 0.5));
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.personal-info {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.1);
}

.info-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding-left: 10px;
}

.info-label {
    font-weight: 500;
    margin-right: 10px;
    color: #333;
    min-width: 120px;
}

.info-label i {
    margin-right: 8px;
    color: #6e8efb;
}

.info-value {
    color: #666;
}

/* 技能部分 */
.skills {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.05), rgba(167, 119, 227, 0.05));
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #33333300;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.skills-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
}

.skills-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.3);
}

.skills-category h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.skills-category h3 i {
    margin-right: 10px;
    color: #6e8efb;
}

.skill-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.skill-name {
    min-width: 120px;
    font-weight: 500;
    color: #333;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 15px;
}

.skill-level {
    height: 100%;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 4px;
    position: relative;
    animation: skillFill 1.5s ease-in-out;
    box-shadow: 0 0 10px rgba(110, 142, 251, 0.5);
}

@keyframes skillFill {
    from { width: 0; }
}

.skill-percent {
    font-size: 14px;
    color: #666;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.tool-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(31, 38, 135, 0.08);
    transition: all 0.4s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.12);
}

.tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.2), rgba(167, 119, 227, 0.2));
    font-size: 24px;
    color: #6e8efb;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.15);
    transition: all 0.4s ease;
}

.tool-item:hover .tool-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.3), rgba(167, 119, 227, 0.3));
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.25);
}

.tool-name {
    font-weight: 500;
    color: #333;
}

/* 经历与成长 */
.experience {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.08), rgba(167, 119, 227, 0.08));
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #33333300;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #6e8efb, #a777e3);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: calc(50% - 30px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    box-shadow: 0 0 0 4px rgba(110, 142, 251, 0.2), 0 0 15px rgba(110, 142, 251, 0.5);
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(110, 142, 251, 0.3), 0 0 20px rgba(110, 142, 251, 0.6);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -40px;
}

.timeline-date {
    font-weight: 500;
    color: #6e8efb;
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(110, 142, 251, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(110, 142, 251, 0.2);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
}

/* 兴趣爱好 */
.interests {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.05), rgba(167, 119, 227, 0.05));
    position: relative;
    overflow: hidden;
}

.interests::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #33333300;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.interest-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
}

.interest-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
}

.interest-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.2), rgba(167, 119, 227, 0.2));
    font-size: 28px;
    color: #6e8efb;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.15);
    transition: all 0.4s ease;
}

.interest-card:hover .interest-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.3), rgba(167, 119, 227, 0.3));
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.25);
}

.interest-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.interest-card p {
    color: #666;
}

/* 项目展示页面样式 */
.projects-hero {
    padding: 100px 0 50px;
    background: #00000000;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #00000000;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.projects-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
}

.projects-hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-hero-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.projects-filter {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(110, 142, 251, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #6e8efb;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(31, 38, 135, 0.05);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.8), rgba(167, 119, 227, 0.8));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.2);
    transform: translateY(-2px);
}

.projects-grid {
    padding: 30px 0 80px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-item {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
    padding: 25px;
    transition: all 0.4s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-header {
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(110, 142, 251, 0.2);
    color: #6e8efb;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(31, 38, 135, 0.05);
}

.tag:hover {
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.2), rgba(167, 119, 227, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.15);
}

.project-body h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.project-meta i {
    margin-right: 5px;
    color: #6e8efb;
}

.project-description p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.project-description h3 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: #333;
}

.project-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.project-description ul li {
    margin-bottom: 8px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(110, 142, 251, 0.15);
    color: #6e8efb;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(31, 38, 135, 0.05);
}

.tech-item:hover {
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.2), rgba(167, 119, 227, 0.2));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.15);
}

/* 荣誉奖项页面样式 */
.awards-hero {
    padding: 100px 0 50px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.awards-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #33333300;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.awards-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
}

.awards-hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awards-filter {
    padding: 30px 0;
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.awards-gallery {
    padding: 30px 0 80px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.award-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
    padding: 20px;
    transition: all 0.4s ease;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.award-img {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-card:hover .award-img img {
    transform: scale(1.05);
}

.award-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.award-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.award-meta i {
    margin-right: 5px;
    color: #6e8efb;
}

.award-info p {
    color: #555;
    line-height: 1.7;
}

/* 联系页面样式 */
.contact-hero {
    padding: 100px 0 50px;
    background: #00000000;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../imgs/背景.jpg'); */
    background-color: #00000000;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
}

.contact-hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.2), rgba(167, 119, 227, 0.2));
    font-size: 28px;
    color: #6e8efb;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.15);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.3), rgba(167, 119, 227, 0.3));
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.25);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 15px auto 0;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.15);
    transition: all 0.4s ease;
}

.contact-card:hover .qr-code {
    transform: scale(1.05);
    border: 3px solid rgba(110, 142, 251, 0.3);
    box-shadow: 0 12px 30px rgba(110, 142, 251, 0.2);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    padding: 0 0 80px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(31, 38, 135, 0.05);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border: 1px solid rgba(110, 142, 251, 0.5);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.1);
    transform: translateY(-2px);
}

/* 已经在上面定义了更好的focus状态，删除这个重复的样式 */

.location {
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/背景.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.location-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
}

.location-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(31, 38, 135, 0.15);
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(110, 142, 251, 0.2);
}

.location-info {
    text-align: center;
    color: #666;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(31, 38, 135, 0.1);
    margin-top: 20px;
    transition: all 0.4s ease;
}

.location-info:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(110, 142, 251, 0.15);
}

.location-info i {
    margin-right: 8px;
    color: #6e8efb;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-img,
    .about-img {
        margin-bottom: 30px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 50px);
        left: 50px !important;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
        background-color: #00000000 ;
    }

    nav ul {
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 60px;
    }

    .profile-img,
    .about-img {
        width: 200px;
        height: 200px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}