  .author-main {
    margin-bottom: 20px;
    /* 深邃高级背景 — 动态微纹理 + 渐变光晕 (保留并增强) */
    background: #0c1625;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(31, 123, 255, 0.22) 0%, transparent 32%),
        radial-gradient(circle at 90% 75%, rgba(140, 190, 255, 0.16) 0%, transparent 45%),
        linear-gradient(135deg, #0f1d30 0%, #1a2b40 45%, #0e1c2c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}
.h-see {
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
}
/* 高级感极细网格 (更加隐晦) */
.author-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(31, 123, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 123, 255, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 0;
}

/* 主卡片：明亮白 + 高级玻璃，衬在深色背景上 */
.horizon-card-avatar {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px) saturate(190%);
    -webkit-backdrop-filter: blur(18px) saturate(190%);
    border-radius: 32px;
    padding:30px;
    box-shadow: 
        0 15px 80px -18px #01060c,
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 0 0 2px rgba(31, 123, 255, 0.3) inset,
        0 25px 45px -20px #1f7bff70;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.4s;
    position: relative;
    z-index: 2;
}


.avatar-name-row {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 头像容器 */
.avatar-frame {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px -6px #1f7bff, 0 0 0 3px rgba(31, 123, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 8px #1f7bff;
    background-image: linear-gradient(145deg, #6fa3ff, #1f57b0);
    /* 模拟头像：字母 A + 微光 */
}
.avatar-frame img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
}
.avatar-frame span {
    transform: scale(1.2);
    display: inline-block;
    filter: drop-shadow(0 4px 6px #0a1c38);
}

.name-title-group {
    display: flex;
    flex-direction: column;
}

.author-main .name {
    margin: 10px;
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0a1b30;
    line-height: 1.1;
    text-shadow: 0 2px 5px rgba(31, 123, 255, 0.25);
}

.role-badge {
    background: linear-gradient(115deg, rgba(31, 123, 255, 0.2), rgba(31, 123, 255, 0.3));
    border-radius: 60px;
    padding: 0.35rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f4b9e;
    border: 1px solid rgba(31, 123, 255, 0.55);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    box-shadow: 0 4px 10px -8px #1f7bff;
    align-self: flex-start;
    margin-top: 0.3rem;
}

/* 主要描述 — 纯白半透 */
.bio-card {
    flex: 3 1 300px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    padding: 20px;
    border: 1px solid rgba(31, 123, 255, 0.35);
    box-shadow: 0 20px 35px -24px #102641, 0 0 0 1px rgba(255,255,255,0.7) inset;
    backdrop-filter: blur(4px);
    margin: 12px 0 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #152b42;
}

/* 三列迷你统计 */
.stat-grid-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.light-stat {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(31, 123, 255, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px -18px #102844;
}

.light-stat:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: #1f7bff;
    box-shadow: 0 20px 30px -22px #1f7bff, 0 0 0 1px rgba(255,255,255,0.8) inset;
}

.stat-label-light {
    text-transform: uppercase;
    color: #1f7bff;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-number {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 650;
    color: #0a1f38;
    line-height: 1.2;
}

.stat-desc {
    color: #3d5f8c;
    margin-top: 2px;
    font-weight: 450;
}

.flavor-mini-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.mini-tag {
    background: rgba(31, 123, 255, 0.12);
    border-radius: 30px;
    padding:2px 9px;
    color: #1f4c9e;
    border: 1px solid rgba(31, 123, 255, 0.3);
    font-weight: 550;
}

.more-flavor-hint {
    color: #5179b5;
    margin-top: 3px;
}

/* 右栏信息块 — 明亮玻璃 */
.info-block-bright {
    margin-bottom: 15px;
background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 10px 20px;
    border: 1px solid rgba(31, 123, 255, 0.45);
    box-shadow: 0 20px 30px -24px #0e1d32, 0 0 0 1px rgba(255, 255, 255, 0.6) 
}

.block-head {
    text-transform: uppercase;
    color: #1f7bff;
    font-weight: 700;
    margin-bottom: 8px;
}

.big-number-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.big-number {
    font-size: 26px;
    font-weight: 700;
    color: #0a1f38;
    line-height: 1;
}

.suffix {
    color: #1f7bff;
    font-weight: 550;
    font-size: 10px;
}

.separator-light {
    height: 1px;
    background: linear-gradient(90deg, transparent, #1f7bff, #1f7bff, transparent);
    margin: 10px 0;
    opacity: 0.5;
}

.flavor-list-bright {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 3px;
}

.flavor-row {
    display: flex;
    align-items: center;
    gap: 7px;
}
.flavor-dot {
    width: 8px;
    height: 8px;
    background: #1f7bff;
    border-radius: 12px;
    box-shadow: 0 0 10px #1f7bff;
}
.flavor-name {
    color: #1a314d;
    font-weight: 550;
    font-size: 10px;
}

.post-count-bright {
    font-size: 24px;
    font-weight: 700;
    color: #0c2340;
    display: inline-block;
    margin-right: 6px
}

.contact-bright {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 10px;
    border: 1px solid #1f7bff90;
    color: #102b48;
    font-family: 'SF Mono', 'Fira Code', monospace;
    word-break: break-all;
    backdrop-filter: blur(5px);
    transition: all 0.2s;
    box-shadow: 0 4px 12px -10px #1f3b6b;
}
.contact-bright:hover {
    background: white;
    border-color: #1f7bff;
    box-shadow: 0 16px 30px -22px #1f7bff;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #1f3d6b;
}
.x-icon {
    background: #1f7bff;
    color: white;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 14px -10px #1f7bff;
}

.expertise-line-bright {
    background: rgba(31, 123, 255, 0.12);
    border-radius: 2.4rem;
    padding: 9px 15px;
    border: 1px solid #1f7bff60;
    color: #15335c;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 14px -16px #0b1d33;
}
.expertise-line-bright::before {
    content: "✦";
    color: #1f7bff;
    margin-right: 4px;
    font-weight: 700;
}

/* 响应式 */
@media (max-width: 767px) {
    .horizon-card-avatar {
        flex-direction: column;
        padding:20px 10px;
        border-radius: 15px;
    }
    .stat-grid-mini {
        grid-template-columns: 1fr 1fr;
    }
    .avatar-name-row {
        gap: 10px;
    }
}
@media (max-width: 575px) {
    .stat-grid-mini {
        grid-template-columns: 1fr;
    }
}

/* 底部浮标 */
.footer-signature {
    position: fixed;
    bottom: 16px;
    right: 26px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1.2px;
    z-index: 3;
    backdrop-filter: blur(4px);
    padding: 4px 16px;
    border-radius: 40px;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}
.blog-all li .item {
    margin: 0 0 10px;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

/* .blog-all li .img {
    width: 100%;
    height: 161px;
    text-align: center
} */
.blog-all li .img {
    width: 100%;
    height: 42vw;
    text-align: center;
}

.news li .img{
    height: 21vw;
}
.blog-all li img{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.blog-all .name {
    width: 100%;
    max-height: 50px;
    font-size: 14px;
    color: #333;
    display: -webkit-box;
    display: -moz-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    overflow: hidden;
    text-decoration: none;
    text-decoration: none;
    font-weight: 700
}
.section-title {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}
.section-title  h2{
    font-size: 30px;
    font-weight: 700;
}

.blog-all .times {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin: 10px 0 0
}

.blog-all .times span {
    color: #999;
    display: inline-block;
    font-size: 12px
}

.blog-all .times i {
    color: #999;
    display: inline-block;
    font-size: 14px;
    margin-right: 2px;
    height: 18px;
    line-height: 18px
}

.blog-all .readmore {
    text-align: left;
    margin: 5px 0 0
}
.blog-all ul{
    width: 100%;
}

.blog-details {
    width: 100%;
    height: auto;
    padding: 10px 10px 15px
}

.blog-all .readmore span {
    display: inline-block;
    width: auto;
    height: 26px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0 12px;
    border: 1px solid var(--primary-color);
    border-radius: 44px;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    -ms-border-radius: 44px;
    -o-border-radius: 44px
}
@media (max-width: 650px) {
    .author-main { padding: 10px 15px 20px; }
    .avatar-name { flex-direction: column; align-items: center; }
    .breadcrumb { padding-left: 15px; }
}

@media (min-width: 576px) {
    .blog-all li .img {
        height: 240px;
    }
    .bio-card {
        font-size: 20px;
    }
    .news li .img{
         height: 120px;
    }
}
@media (min-width: 768px) {
    .author-main .name{
        font-size: 30px;
        text-align: left;
    }
    .blog-all li .img {
        width: 100%;
        height: 330px;
        text-align: center;
    }
       
    .news li .img{
         height: 165px;
    }
  
}
@media (min-width: 992px) {
    .blog-all li .img {
        height: 215px;
    }
       
    .news li .img{
         height: 108px;
    }
}
@media (min-width: 1200px) {
    .blog-all li .img {
        height: 255px;
    }
    .news li .img{
         height: 128px;
    }
}
@media (min-width: 1400px) {
    .blog-all li .img {
        height: 300px;
    }
    .news li .img{
         height: 150px;
    }
}

@media (min-width: 1500px) {
    .blog-all li .img {
        height: 320px;
    }
    .news li .img{
         height: 160px;
    }
}


