* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Microsoft YaHei", Arial, sans-serif;
            color: #333;
            font-size: 14px;
            background-image: url("../image/bj.webp") ;
            background-size: 100%;
        }
        a {
            text-decoration: none;
            color: #06c;
        }
        a:hover {
            /* text-decoration: underline; */
        }
        
        .top-nav {
            background: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid #e8e8e8;
            padding: 10px 0;
        }
        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            font-size: 20px;
            font-weight: bold;
            color: #06c;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: #666;
            font-size: 14px;
        }
        
        .header-section {
            background: rgba(255, 255, 255, 0.8);
            padding: 30px 0;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid #e8e8e8;
        }
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
        }
        .person-avatar {
            width: auto;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: white;
            flex-shrink: 0;
            border-radius: 2px;
            overflow: hidden;
            box-shadow:  -8px 20px 5px rgba(0, 0, 0, 0.5);
        }
        .person-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .person-header {
            flex: 1;
        }
        .person-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .person-summary {
            line-height: 1.8;
            color: #666;
            font-size: 14px;
            text-indent: 2em;
        }
        
        .main-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            display: flex;
            gap: 20px;
        }
        .content-section {
            flex: 1;
            background: rgba(255, 255, 255, 0.8);
            padding: 30px;
            border-radius: 4px;
        }
        .sidebar-section {
            width: 220px;
            flex-shrink: 0;
        }
        
        .info-box {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        .info-box-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e8e8e8;
        }
        .info-item {
            display: flex;
            margin-bottom: 12px;
            line-height: 1.6;
        }
        .info-label {
            width: 70px;
            color: #999;
            flex-shrink: 0;
        }
        .info-value {
            flex: 1;
            color: #333;
        }
        
        .catalog-box {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 4px;
        }
        .catalog-item {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .catalog-item:last-child {
            border-bottom: none;
        }
        .catalog-item a {
            color: #666;
            font-size: 14px;
        }
        .catalog-item a:hover {
            color: #06c;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #06c;
        }
        .section-title:first-child {
            margin-top: 0;
        }
        
        .section-content {
            line-height: 1.8;
            color: #333;
            font-size: 14px;
        }
        .section-content p {
            margin-bottom: 15px;
            text-indent: 2em;
        }
        
        .timeline {
            margin: 20px 0;
        }
        .timeline-item {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            margin-left: 10px;
            transition: all 0.5s ease;
        }
        .timeline-item:hover .timeline-title{
            font-size: 18px;
        }
        .timeline-item:hover{
            margin: 10px 0;
        }
        .timeline-item:last-child {
            border-bottom: none;
        }
        .timeline-date {
            color: #06c;
            font-weight: bold;
            margin-bottom: 5px;
            margin-right: 20px;
        }
        .timeline-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
            transition: all 0.5s ease;
        }
        .timeline-desc {
            color: #666;
            line-height: 1.6;
            
        }
        .timeline-major,.timeline-firm {
            color: #444;
            font-size: 15px;
            margin-left: 30px;
        }


        
        .honor-list {
            display: flex;
            margin: 20px 0;
            width: 100%;
            gap: 10px;
            overflow-x: auto;
            position: relative;
        }
        .honor-list-inner {
            display: flex;
            gap: 10px;
            /* width: 100%; */
            animation: scrollLeft 25s linear infinite;
        }
        .honor-list:hover .honor-list-inner {
            animation-play-state: paused;
        }
        @keyframes scrollLeft {
            0% {
                transform: translateX(5%);
            }
            50% {
                transform: translateX(-90%);
            }
            100% {
                transform: translateX(5%);
            }

        }
        .honor-item {
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            flex-shrink: 0;
            /* min-width: 280px; */
        }
        .honor-image {
            border-radius: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: white;
            position: relative;
            cursor: pointer;
        }
        .honor-image img {
            width: 100%;
            max-width: 300px;
            height: 200px;
            object-fit: cover;
        }
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
            color: white;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
            cursor: pointer;
            z-index: 10;
            transition: transform 0.3s ease;
        }
        .play-icon:hover {
            transform: translate(-50%, -50%) scale(1.2);
        }
        .honor-info {
            position: absolute;
            top: 120%;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 5px 15px;
            transition: top 1s ease;
        }
        .honor-item:hover .honor-info {
            top: 0;
        }
        .honor-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
            font-size: 16px;
            text-align: center;
        }
        .honor-desc {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 8px;
            text-indent: 1em;
            font-size: 14px;
        }
        .honor-date {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }
        
        .certificate-list {
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .certificate-item {
            display: flex;
            gap: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            transition: all 1s ease;
        }
        .certificate-item:hover {
            transform: translateY(5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            border-bottom: 5px solid #06c;
        }
        .certificate-icon {
            width: 50%;
            height: auto;
            flex-shrink: 0;
            border-radius: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            cursor: pointer;
        }
        .certificate-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 2px solid #ccc;
        }
        .certificate-info {
            flex: 1;
        }
        .certificate-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
            font-size: 16px;
        }
        .certificate-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 8px;
            text-indent: 2em;
        }
        .certificate-date {
            color: #999;
            font-size: 15px;
        }
        
        .tech-item {
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            border-radius: 4px;
            border-left: 4px solid #06c;
            transition: all 0.5s ease;
        }
        .tech-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        .tech-item.tech-item-1 {
            background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%) !important;
            border-left-color: #b8dbf8 !important;
        }
        .tech-item.tech-item-2 {
            background: linear-gradient(135deg, #f1f8f1 0%, #e8f5e9 100%) !important;
            border-left-color: #bfdcc0 !important;
        }
        .tech-item.tech-item-3 {
            background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%) !important;
            border-left-color: #fee5be !important;
        }
        .tech-item.tech-item-4 {
            background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%) !important;
            border-left-color: #fcecbe !important;
        }
        .tech-item.tech-item-5 {
            background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%) !important;
            border-left-color: #f2c7c7 !important;
        }
        .tech-item.tech-item-6 {
            background: linear-gradient(135deg, #faf5fb 0%, #f3e5f5 100%) !important;
            border-left-color: #d8bfdc !important;
        }
        .tech-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        .tech-desc {
            color: #666;
            line-height: 1.8;
            margin-bottom: 10px;
            text-indent: 2em;
        }
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        .tech-tag {
            border-radius: 12px;
        }
        .tech-tag img {
            width: auto;
            height: 30px;
            margin-right: 4px;
        }
        
        .platform-section {
            margin: 30px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        .platform-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        .platform-list {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 20px;
        }
        .platform-tag {
            display: inline-flex;
            align-items: center;
            padding: 1px 10px;
            border-radius: 20px;
            font-size: 12px;
            color: white;
            transition: all 0.5s ease;
            cursor: pointer;
        }
        .platform-tag:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
        }
        .platform-tag.phone {
            background: rgba(92, 22, 22, 0.5);
        }
        .platform-tag.email {
            background: rgba(29, 75, 75, 0.5);
        }
        .platform-tag.csdn {
            background: rgba(113, 33, 73, 0.515);
        }
        .platform-tag.bilibili {
            background: rgba(79, 60, 26, 0.515);
        }
        .platform-tag.gitee {
            background: rgba(67, 19, 59, 0.515);
        }
        .platform-tag.wechat {
            background: rgba(62, 41, 143, 0.51);
        }
        .platform-tag.qq {
            background: rgba(16, 80, 32, 0.51);
        }
        .platform-tag.weibo {
            background: rgba(85, 19, 19, 0.51);
        }
        .platform-tag-icon {
            margin-right: 6px;
            font-size: 16px;
        }
        
        .project-list {
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        .project-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            border: 3px solid #fff;
        }
        .project-image {
            width: 100%;
            height: 100%;
            flex-shrink: 0;
            border-radius: 4px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            font-size: 50px;
            color: white;
            position: relative;
            cursor: pointer;
        }
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .project-info {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: top 1s ease;
        }
        .project-item:hover .project-info {
            top: 0;
        }
        .project-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
            font-size: 16px;
            text-align: center;
        }
        .project-desc {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.2;
            font-size: 14px;
            margin-bottom: 10px;
            text-indent: 1em;
        }
        .project-date {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            margin-top: 5px;
        }
        
        .reference-box {
            background: rgba(255, 255, 255, 0.8);
            padding: 15px;
            margin-top: 30px;
            border-radius: 4px;
        }
        .reference-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        .reference-item {
            color: #666;
            line-height: 1.8;
            font-size: 13px;
        }
        
        .footer {
            background: rgba(255, 255, 255, 0.8);
            border-top: 1px solid #e8e8e8;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            color: #999;
            font-size: 12px;
        }
        
        #player-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            display: none;
        }
        
        #player-container > div {
            position: relative;
            width: 80%;
            height: 80%;
            margin: 5% auto;
        }
        
        #player-container button {
            position: absolute;
            /* top: -40px; */
            right: -40px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #player-container button:hover {
            background: #f0f0f0;
        }
        
        #player {
            width: 100%;
            height: 100%;
            /* background: #000; */
            border-radius: 8px;
            overflow: hidden;
        }
        
        #video-player {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* background: #000; */
        }
        
        #image-player-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: none;
        }
        
        #image-player-container > div {
            position: relative;
            width: 90%;
            height: 90%;
            margin: 5% auto;
        }
        
        #image-player-container button {
            position: absolute;
            /* top: -40px; */
            right: 0;
            width: 40px;
            height: 40px;
            background: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #image-player-container button:hover {
            background: #f0f0f0;
        }
        
        #image-player {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #image-viewer {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        @media (max-width: 768px) {
             .sidebar-section{
                display: none;
            }

            .certificate-item{
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: relative;
            }
            .certificate-icon{
                width:100%;
                height: auto;
            }
            .certificate-info{
                position: absolute;
                bottom: 10px;
                left: 15px;
                right: 15px;
                padding: 10px 10px 0 10px;
                text-align: center;
                background-color: rgba(255, 255, 255, 0.8);
            }
            .certificate-desc{
                display: none;
            }
            .certificate-list{
                gap: 8px;
            }
        .honor-list-inner {
            animation: scrollLeft 55s linear infinite;
        }
            @keyframes scrollLeft {
                0% {
                    transform: translateX(5%);
                }
                50% {
                    transform: translateX(-500%);
                }
                100% {
                    transform: translateX(5%);
                }

            }
            .honor-info,.project-info{
                top: 0;
                padding: 0 5px;
            }
            .main-container {
                flex-direction: column;
                padding: 0;;
            }
            .sidebar-section {
                width: 100%;
                position: relative;
            }
            .header-content {
                flex-direction: column-reverse;
                /* text-align: center; */
                padding-top: 70px;
            }
            .person-avatar {
                margin: 0 auto;
                float: right;
                position: absolute;
                top: 60px;
                right: 20px;
                width: 100px;
                height: auto;
            }
            
            .nav-links {
                display: none;
            }
            .honor-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .honor-image {
                height: 150px;
            }
            .certificate-list {
                grid-template-columns: 1fr;
            }
            .project-list {
                grid-template-columns: 1fr;
            }
            .project-image {
                height: 260px;
            }
        }
        @media (max-width: 992px) {
            .project-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .honor-list {
                grid-template-columns: 1fr;
            }
            .honor-image {
                height: 200px;
            }
            .sidebar-section{
                display: none;
            }
        }

.grid-box{
    width: 100%;
    display: flex;
    justify-content: center;
}
.grid-container{
    width: 100%;
    height: 20px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
}
.grid-item{
    width: 20px;
    height: 20px;
    margin: 1px;
    background-color: #f0f0f0;
}
.grid-item:hover{
    transform: scale(1.5);
    border: 1px solid #000;
}
.grid-item > div{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-item-content-0f0{
    background: #0f0;
}
.grid-item-content-0c0{
    background: #0c0;
}
.grid-item-content-0a0{
    background: #0a0;
}
.grid-item-content-080{
    background: #080;
}
.grid-item-content-050{
    background: #050;
}

