     :root {
            --theme-color-start: #667eea;
            --theme-color-end: #764ba2;
        }
        .beian {
            font-size: 0.9rem;
            opacity: 0.9;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .beian i {
            position: relative;
            top: -1px;
            margin-right: 3px;
        }
        .beian a:hover {
            opacity: 0.8;
        }
        body {
         background: linear-gradient(135deg, #ffffff 0%, #c1c1c1 100%);
    min-height: auto;
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    will-change: background-position;
        }

        .profile-container {
            max-width: 680px;
            margin: 0 auto;    margin-bottom: 1rem;
        }
        .profile-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin-bottom: 1rem;
            border: 3px solid #fff;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .profile-bio {
            color: #fff;
            margin-bottom: 2rem;
        }
        .link-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            transition: transform 0.3s;
            text-decoration: none;
            color: #333;
            display: block;
            position: relative;
            z-index: 1;  
    padding: 16px 0;
    margin-bottom: 1rem;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
        }
        .link-card:hover {
            transform: translateY(-3px);
           
            color: #333;
            z-index: 2;
        }
        .link-icon {
          width: 38px;
    height: 38px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    object-fit: cover;
        }
        /* 公告栏样式 */
        .announcement-container {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
            color: #fff;
        }
        .announcement-title {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.3rem;
        }
        .announcement-content {
            position: relative;
            height: 24px;
            overflow: hidden;
        }
        .announcement-list {
            position: absolute;
            width: 100%;
            transition: transform 0.5s ease;
        }
        .announcement-item {
            height: 24px;
            line-height: 24px;
            color: #fff;
        }
        .announcement-item a {
            color: #fff;
            text-decoration: underline;
            opacity: 0.9;
        }
        .announcement-item a:hover {
            opacity: 1;
        }
        .copy-btn {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #666;
            padding: 5px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }
        .copy-btn:hover {
            opacity: 1;
        }
        .copy-btn i {
            font-size: 1.2rem;
        }
        .copy-success {
            position: fixed;
            bottom: 50%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 8px 16px;
            border-radius: 4px;
            z-index: 1000;
            display: none;
        }
        /* 时间显示样式 */
        .datetime-display {
            color: #fff;
            font-size: 0.9rem;
            opacity: 0.9;
            min-width: 200px;
            text-align: right;
        }
        .datetime-display .time {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .datetime-display .date {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.95;
        }
        /* 页面加载动画 */
        .page-loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--theme-color-start);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s;
        }
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s linear infinite;
            will-change: transform;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        /* 链接卡片动画 */
        .link-card {
            animation: fadeInUp 0.6s backwards;
            will-change: transform, opacity;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* 渐变背景动画 */
        body {
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            will-change: background-position;
        }
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        /* 链接卡片悬停效果增强 */
        .link-card {
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .link-card:hover {
            transform: translateY(0px) scale(1.06);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        /* 修改头部布局 */
        .header-container {
            display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    background: rgb(50 162 35);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(10px);
        }
        
        /* 调整个人资料文字大小 */
        .profile-info h1 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.2;
			    color: #fff;
        }
        
        .profile-info {
            flex: 1;
            text-align: left;
            margin-right: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .profile-bio {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.5;
            max-width: 500px;
        }
        
        .right-side {
            min-width: 200px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: right;
            justify-content: center;
        }
        
        /* 公告容器样式 */
        .announcement-wrapper {
                background: #4CAF50;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
        }
        
        /* 响应式布局 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem 1rem;
            }
            
            .profile-info {
                margin-right: 0;
                margin-bottom: 0;
                text-align: center;
                align-items: center;
                width: 100%;
            }
            
            .profile-info h1 {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
                padding: 0 1rem;
            }
            
            /* 在移动端隐藏时间显示 */
            .right-side {
                display: none;
            }
            
            .profile-bio {
                font-size: 0.85rem;
                max-width: 100%;
                padding: 0 1rem;
                margin: 0;
            }
            
            .announcement-wrapper {
                padding: 0.8rem 1rem;
                margin-bottom: 0.8rem;
            }

            /* 优化移动端整体布局 */
            .profile-container {
                padding: 0;
            }
            
            .container {
                padding: 0 0.5rem;
            }
        }

        /* 小屏幕设备的额外优化 */
        @media (max-width: 375px) {
            .header-container {
                padding: 1rem 0.8rem;
            }
            
            .profile-info h1 {
                font-size: 1.2rem;
            }
            
            .profile-bio {
                font-size: 0.8rem;
            }
        }

        /* 网格布局样式 */
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            position: relative;
        }
        
        .links-grid .link-card {
            margin-bottom: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .links-grid .link-card .d-flex {
            flex: 1;
        }
        
        /* 列表布局样式优化 */
        .links-list .link-card {
            margin-bottom: 1rem;
        }
        
        @media (max-width: 768px) {
            .links-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
        }

        /* 悬浮按钮样式 */
        .float-btns {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }
        
        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .float-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            color: #333;
        }
        
        .float-btn svg {
            font-size: 1.5rem;
            line-height: 1;
            width: 28px;
            height: 28px;
        }
        
        .float-btn.qq {
            background: #12B7F5;
            color: #fff;
        }
        
        .float-btn.wechat {
            background: #07C160;
            color: #fff;
        }
        
        /* 微信二维码弹窗 */
        .wechat-qr {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            display: none;
            z-index: 1001;
        }
        
        .wechat-qr img {
            max-width: 200px;
            height: auto;
        }
        
        .wechat-qr .close {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            opacity: 0.5;
        }
        
        .wechat-qr .close:hover {
            opacity: 1;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: none;
            z-index: 1000;
        }
        
        @media (max-width: 768px) {
            .float-btns {
                right: 15px;
                bottom: 15px;
            }
            
            .float-btn {
                width: 45px;
                height: 45px;
            }
        }

        /* 链接二维码样式 */
        .link-qr {
            position: absolute;
            left: 100%;
            margin-left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            display: none;
            z-index: 10;
            width: 130px;
            text-align: center;
        }
        
        .link-qr img {
            width: 110px;
            height: 110px;
            margin-bottom: 5px;
        }
        
        .link-qr-text {
            font-size: 12px;
            color: #666;
            margin-top: -10px;
        }
        
        .link-card:hover .link-qr {
            display: block;
        }
        
        @media (max-width: 768px) {
            .link-qr {
                display: none !important;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .beian {
                flex-direction: column;
                gap: 0.5rem;
            }
 .sidebar-right, .sidebar-left {
    top: -9px;}
        }

        /* 确保网格布局下二维码不会被遮挡 */
        .links-grid .link-card:hover {
            transform: translateY(-3px) translateX(-5px);
        }
        
        .links-grid .link-qr {
            left: calc(100% - 5px);
        }
		.main {
    margin: 90px 0 20px 0;
    padding: 0;
    overflow: hidden;
}




.theme-laoyu {
    border-radius: 30px;
    box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
    background: rgb(255 255 255 / 80%);
    color: #111;
    border: 2px solid rgba(66, 66, 66, 0.76);
}
.theme-laoyu .h6{
    font-weight: 600;
}
.laoyu_avatar .laoyu_img-avatar {
    border-radius: 50%;
    width: 96px;
    height: 96px;
    object-fit: cover;
}
.laoyu_name {
    font-weight: 700;
    font-size: 20px;
        margin-bottom: 10px;
    margin-top: 15px;
    display: flex
;
    align-items: center;
    position: relative;    color: #fff;
}
.laoyu_intro {
    text-align: center;
    padding: 0 20px;
    max-width: 688px;
    font-weight: 500;    color: #eee;    font-size: 15px;
}
.laoyu_home {
    width: 100%;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    overflow-x: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.laoyu-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.laoyu_home .laoyu_intro {
    text-align: center;
    padding: 0 20px;
    max-width: 680px;
     color: #eee;
}

.laoyu_showurl {
    font-weight: 600;
    margin-top: 15px !important;
    padding: 8px 20px !important;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: hsla(0, 0%, 92%, .191);
    border-radius: 25px;
}
.laoyu_showurl a{color: #eee;
    
}
    .site-header {
        padding: 0.5rem 0 0;
    }
    
    
    
.site-header .navbar {
padding: .25rem .6rem;
    -webkit-box-shadow: 0px 10px 50px 0 rgb(8 11 25 / 5%);
    box-shadow: 0px 10px 50px 0 rgb(8 11 25 / 5%);
    border: 1px solid #ebeef1;
    border-radius: 72px;
    background-color: hsl(0deg 0% 100% / 82%) !important;
    transition: background-color .15s ease 0s, -webkit-transform .15s ease 0s, -webkit-backdrop-filter .15s ease 0s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
}
.site-header .site-logo {
    width: 38px;
    height: 38px;
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    border-radius: none;
}
.site-header .site-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    border-radius: 50%;
    object-fit: cover;
}
    .site-header .container-fluid {
        max-width: 720px;
    }
    
    .fixed-bar {
    position: fixed;
    bottom: 140px;
    right: 22px;
    opacity: .6;
    z-index: 999;
}
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0.5rem 0 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.laoyu_post {
 margin-top: 10px !important;
    margin-bottom: 15px !important;
    padding: 0 20px;
    width: 100%;
    max-width: 688px;
    font-weight: 500;
    color: #dfdfdf;
    font-size: 16px;
    border-radius: 5px;
    padding: 20px 20px !important;
    background: hsl(0deg 0% 11.97% / 71%);
}

.laoyu_post {padding:2rem 4rem;border-radius: 10px;cursor:default;overflow:hidden;}
.laoyu_post img{border-radius: 20px;margin: 5px 0;
    max-width: 100%;
    height: auto!important;}
.laoyu_post p {font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px;}
.laoyu_post h4 {padding:10px 0;font-size:18px;}
.laoyu_post h3 {padding:10px 0;font-size:18px;}
.laoyu_post .cards{font-size: 0;cursor: default;overflow: hidden;}
.laoyu_post .cards li {vertical-align:top;width:27.5%;margin-top:12px;margin-right:8%;display:inline-block;font-size:14px;position:relative;color:#999;padding-left:35px;text-align:justify;height:62px;overflow:hidden;}
.laoyu_post .cards li:nth-child(3n) {margin-right:0px;}
.laoyu_post .cards li .iconfont {font-size:15px;line-height:25px;width:25px;height:25px;color:#fff;background-color:#212c39;border-radius:12px;text-align:center;float:left;margin-left:-35px;}
.laoyu_post .cards li strong {display:block;margin-bottom:1px;color:#202935;font-size:14px;font-weight:600;transition:all .3s ease-in-out;}