/* 简块作者信息卡片样式 */

.simauthor-card {
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333; /* 设置默认文字颜色为深灰色，提高可读性 */
}


/* 链接样式优化 - 确保可读性 */
.simauthor-card a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.simauthor-card a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* 确保所有主题下的链接都有足够的对比度 */
.simauthor-style-default a,
.simauthor-style-minimal a,
.simauthor-style-card a,
.simauthor-style-timeline a,
.simauthor-style-magazine a,
.simauthor-style-professional a {
    color: #1976d2;
}

.simauthor-style-default a:hover,
.simauthor-style-minimal a:hover,
.simauthor-style-card a:hover,
.simauthor-style-timeline a:hover,
.simauthor-style-magazine a:hover,
.simauthor-style-professional a:hover {
    color: #1565c0;
}

/* 深色主题链接颜色 */
.simauthor-style-modern a,
.simauthor-style-artistic a,
.simauthor-style-neon a {
    color: #ffffff;
}

.simauthor-style-glass a {
    color: #0d47a1;
}

.simauthor-style-elegant a,
.simauthor-style-creative a {
    color: #667eea;
}

.simauthor-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* 头部区域 */
.simauthor-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.simauthor-avatar-wrapper {
    margin-right: 15px;
    flex-shrink: 0;
}

.simauthor-avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: transform 0.3s ease;
    /* 强制清除所有可能的模糊效果 */
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    /* 确保图片清晰度 */
    image-rendering: auto;
    -webkit-image-rendering: auto;
    -moz-image-rendering: auto;
    -ms-image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* 移除可能的文本阴影 */
    text-shadow: none !important;
    /* 默认状态确保清晰度 */
}

.simauthor-avatar:hover {
    transform: scale(1.05) !important;
    /* 悬停时也保持清晰 */
    filter: none !important;
    -webkit-filter: none !important;
}

/* 特别处理可能来自外部主题的干扰 */
.simauthor-card img.simauthor-avatar,
.simauthor-card .simauthor-avatar img,
img.simauthor-avatar {
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

/* 清除可能的CSS3动画干扰 */
.simauthor-avatar,
.simauthor-avatar * {
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -ms-animation: none !important;
    -o-animation: none !important;
}

.simauthor-info {
    flex: 1;
}

.simauthor-name {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.3;
}

.simauthor-stats {
    font-size: 0.9em;
    opacity: 0.8;
}



.simauthor-stat-item a {
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
}

.simauthor-stat-

/* 简介区域 - 统一间距 */
.simauthor-bio {
    margin: 20px 0;
    line-height: 1.6;
}

.simauthor-bio p {
    margin: 0;
    font-size: 0.95em;
}

.simauthor-bio strong {
    font-weight: 600;
}

.simauthor-bio em {
    font-style: italic;
}

.simauthor-bio a {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity 0.3s ease;
}

.simauthor-bio a:hover {
    opacity: 0.8;
}

/* 底部区域 - 统一间距优化 */
.simauthor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.simauthor-homepage {
    margin-bottom: 10px;
}

.simauthor-social {
    margin-top: 10px;
}

.simauthor-homepage-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(0, 124, 186, 0.1);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.simauthor-homepage-link:hover {
    background-color: rgba(0, 124, 186, 0.2);
    transform: translateY(-1px);
}

/* 社交图标 */
.simauthor-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.simauthor-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.simauthor-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--social-color, #007cba);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.simauthor-social-link:hover::before {
    opacity: 0.1;
}

.simauthor-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.simauthor-social-link i {
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.simauthor-social-link:hover i {
    color: var(--social-color, #007cba);
}

/* 各平台专属颜色 */
.simauthor-social-weibo { --social-color: #e6162d; }
.simauthor-social-twitter { --social-color: #1da1f2; }
.simauthor-social-telegram { --social-color: #0088cc; }
.simauthor-social-github { --social-color: #333; }
.simauthor-social-email { --social-color: #ea4335; }
.simauthor-social-qq { --social-color: #12b7f5; }
.simauthor-social-wechat { --social-color: #07c160; }
.simauthor-social-linkedin { --social-color: #0077b5; }
.simauthor-social-instagram { --social-color: #e4405f; }
.simauthor-social-youtube { --social-color: #ff0000; }

/* 不同样式主题 - 优化配色版本 */

/* 默认风格 - 清新蓝白配色，优化可读性 */
.simauthor-style-default {
    background: #ffffff;
    border: 1px solid #e3f2fd;
    color: #2c3e50;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.1);
}

.simauthor-style-default .simauthor-name {
    color: #1976d2;
    font-weight: 700;
}

.simauthor-style-default .simauthor-bio {
    color: #37474f;
    background-color: #f8fafe;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #1976d2;
}

.simauthor-style-default .simauthor-stats {
    color: #546e7a;
    font-weight: 500;
}

.simauthor-style-default .simauthor-homepage-link {
    background: #1976d2;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.simauthor-style-default .simauthor-homepage-link:hover {
    background: #1565c0;
    color: white;
    text-decoration: none;
}

/* 现代风格 - 渐变紫蓝配色，优化对比度和间距 */
.simauthor-style-modern {
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.simauthor-style-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.simauthor-style-modern > * {
    position: relative;
    z-index: 1;
}

.simauthor-style-modern .simauthor-header {
    margin-bottom: 20px;
}

.simauthor-style-modern .simauthor-name {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.simauthor-style-modern .simauthor-bio {
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.simauthor-style-modern .simauthor-stats {
    color: #e8eaf6;
    font-weight: 500;
}

.simauthor-style-modern .simauthor-footer {
    margin-top: 20px;
    gap: 15px;
}

.simauthor-style-modern .simauthor-homepage {
    margin-bottom: 15px;
}

.simauthor-style-modern .simauthor-homepage-link {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.simauthor-style-modern .simauthor-homepage-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.simauthor-style-modern .simauthor-social {
    margin-top: 15px;
}

.simauthor-style-modern .simauthor-social-link {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.simauthor-style-modern .simauthor-social-link:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.simauthor-style-modern .simauthor-social-link i {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 极简风格 - 简约灰白配色，提升对比度 */
.simauthor-style-minimal {
    border: none;
    box-shadow: none;
    background-color: #fafafa;
    border-top: 3px solid #546e7a;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 15px;
    color: #2c3e50;
}

.simauthor-style-minimal:hover {
    box-shadow: none;
    transform: none;
    background-color: #f5f5f5;
}

.simauthor-style-minimal .simauthor-name {
    color: #2c3e50;
    font-weight: 700;
}

.simauthor-style-minimal .simauthor-bio {
    color: #37474f;
    background-color: #f0f4f8;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 2px solid #546e7a;
    font-weight: 500;
}

.simauthor-style-minimal .simauthor-stats {
    color: #455a64;
    font-weight: 500;
}

.simauthor-style-minimal .simauthor-homepage-link {
    background: #546e7a;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.simauthor-style-minimal .simauthor-homepage-link:hover {
    background: #37474f;
    color: white;
    text-decoration: none;
}

/* 卡片风格 - 纯净白色配色，优化层次感 */
.simauthor-style-card {
    border-radius: 15px;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: none;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.simauthor-style-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.simauthor-style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3f51b5 0%, #2196f3 50%, #03a9f4 100%);
}

.simauthor-style-card .simauthor-name {
    color: #1a237e;
    font-weight: 700;
}

.simauthor-style-card .simauthor-bio {
    color: #37474f;
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #3f51b5;
    font-weight: 500;
}

.simauthor-style-card .simauthor-stats {
    color: #455a64;
    font-weight: 500;
}

.simauthor-style-card .simauthor-homepage-link {
    background: #3f51b5;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.simauthor-style-card .simauthor-homepage-link:hover {
    background: #303f9f;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .simauthor-card {
        margin: 15px 0;
        padding: 15px;
    }
    
    .simauthor-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .simauthor-avatar-wrapper {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .simauthor-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .simauthor-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .simauthor-card {
        padding: 12px;
    }
    
    .simauthor-name {
        font-size: 1.1em;
    }
    
    .simauthor-bio {
        font-size: 0.9em;
    }
}

/* 统计信息增强样式 */
.simauthor-stat-item a {
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    transition: all 0.3s ease;
}

.simauthor-stat-item a:hover {
    opacity: 0.8;
    border-bottom-style: solid;
}

/* 统计信息换行处理 */
@media (max-width: 480px) {
    .simauthor-stat-item {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
    }
}

/* 增强的社交图标样式 */
.simauthor-social-link[title*="微博"] .simauthor-social-icon {
    color: #e6162d;
}

.simauthor-social-link[title*="Twitter"] .simauthor-social-icon {
    color: #1da1f2;
}

.simauthor-social-link[title*="Telegram"] .simauthor-social-icon {
    color: #0088cc;
}

.simauthor-social-link[title*="GitHub"] .simauthor-social-icon {
    color: #333;
}

.simauthor-social-link[title*="邮箱"] .simauthor-social-icon {
    color: #ea4335;
}

/* 现代风格的社交图标颜色覆盖 */
.simauthor-style-modern .simauthor-social-link .simauthor-social-icon {
    color: white !important;
}

/* 确保所有样式的头像都清晰无特效 - 最强覆盖 */
.simauthor-avatar,
.simauthor-style-default .simauthor-avatar,
.simauthor-style-modern .simauthor-avatar,
.simauthor-style-minimal .simauthor-avatar,
.simauthor-style-card .simauthor-avatar,
.simauthor-style-elegant .simauthor-avatar,
.simauthor-style-creative .simauthor-avatar,
.simauthor-style-professional .simauthor-avatar,
.simauthor-style-artistic .simauthor-avatar,
.simauthor-style-glass .simauthor-avatar,
.simauthor-style-neon .simauthor-avatar,
.simauthor-style-timeline .simauthor-avatar,
.simauthor-style-magazine .simauthor-avatar,
.simauthor-style-social .simauthor-avatar,
.simauthor-style-compact .simauthor-avatar,
.simauthor-style-vertical .simauthor-avatar {
    /* 清除所有阴影效果 */
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
    /* 清除所有滤镜效果 */
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    /* 清除模糊效果 */
    blur: 0 !important;
    -webkit-blur: 0 !important;
    /* 确保图片渲染清晰 */
    image-rendering: auto !important;
    -webkit-image-rendering: auto !important;
    /* 默认状态不使用变换效果 */
    /* 确保边框清晰 */
    outline: none !important;
    /* 移除可能的文本阴影 */
    text-shadow: none !important;
}
/*
 ========== 新增卡片样式 ========== */

/* 优雅风格 - 优化配色 */
.simauthor-style-elegant {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    color: #2c3e50;
}

.simauthor-style-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.simauthor-style-elegant .simauthor-name {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.simauthor-style-elegant .simauthor-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.simauthor-style-elegant .simauthor-bio {
    color: #546e7a;
}

.simauthor-style-elegant .simauthor-stats {
    color: #607d8b;
}

.simauthor-style-elegant .simauthor-homepage-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.simauthor-style-elegant .simauthor-homepage-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* 创意风格 - 优化配色 */
.simauthor-style-creative {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    color: #2c3e50;
}

.simauthor-style-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea);
    animation: rotate 20s linear infinite;
    z-index: -2;
}

.simauthor-style-creative::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: white;
    border-radius: 17px;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.simauthor-style-creative .simauthor-header {
    position: relative;
    z-index: 1;
}

.simauthor-style-creative .simauthor-name {
    color: #2c3e50;
    font-weight: 700;
}

.simauthor-style-creative .simauthor-bio {
    color: #546e7a;
}

.simauthor-style-creative .simauthor-stats {
    color: #607d8b;
}

.simauthor-style-creative .simauthor-avatar {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea, #764ba2) border-box;
}

.simauthor-style-creative .simauthor-homepage-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.simauthor-style-creative .simauthor-homepage-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 专业风格 - 优化配色 */
.simauthor-style-professional {
    background: #ffffff;
    border: 1px solid #e3f2fd;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.08);
    position: relative;
    color: #2c3e50;
}

.simauthor-style-professional .simauthor-header {
    padding-bottom: 15px;
    border-bottom: 2px solid #e3f2fd;
    margin-bottom: 15px;
}

.simauthor-style-professional .simauthor-name {
    color: #1565c0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.simauthor-style-professional .simauthor-bio {
    color: #546e7a;
}

.simauthor-style-professional .simauthor-stats {
    background: #f3f8ff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

.simauthor-style-professional .simauthor-homepage-link {
    background: #1976d2;
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8em;
    padding: 10px 20px;
}

.simauthor-style-professional .simauthor-homepage-link:hover {
    background: #1565c0;
    transform: translateY(-1px);
}

/* 艺术风格 */
.simauthor-style-artistic {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.simauthor-style-artistic::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.simauthor-style-artistic .simauthor-name {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.simauthor-style-artistic .simauthor-bio {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.simauthor-style-artistic .simauthor-homepage-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.simauthor-style-artistic .simauthor-homepage-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.simauthor-style-artistic .simauthor-social-link {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.simauthor-style-artistic .simauthor-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.simauthor-style-artistic .simauthor-social-link i {
    color: white;
}

/* 玻璃拟态风格 - 优化配色和可读性 */
.simauthor-style-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    color: #1a237e;
}

.simauthor-style-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

.simauthor-style-glass .simauthor-name {
    color: #0d47a1;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.simauthor-style-glass .simauthor-bio {
    color: #1565c0;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.simauthor-style-glass .simauthor-stats {
    color: #1976d2;
    font-weight: 500;
}

.simauthor-style-glass .simauthor-homepage-link {
    background: rgba(25, 118, 210, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 118, 210, 0.4);
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.simauthor-style-glass .simauthor-homepage-link:hover {
    background: rgba(25, 118, 210, 0.9);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.simauthor-style-glass .simauthor-social-link {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* 霓虹风格 - 优化配色和可读性 */
.simauthor-style-neon {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #0f3460;
    border-radius: 15px;
    color: #e94560;
    box-shadow: 
        0 0 20px rgba(15, 52, 96, 0.3),
        inset 0 0 20px rgba(15, 52, 96, 0.1);
    position: relative;
}

.simauthor-style-neon .simauthor-name {
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff;
    animation: neonGlow 2s ease-in-out infinite alternate;
    font-weight: 700;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff; }
    to { text-shadow: 0 0 20px #00d4ff, 0 0 30px #00d4ff, 0 0 40px #00d4ff; }
}

.simauthor-style-neon .simauthor-bio {
    color: #f0f8ff;
    background: rgba(0, 212, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.simauthor-style-neon .simauthor-stats {
    color: #b3e5fc;
    background: rgba(0, 212, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-weight: 500;
}

.simauthor-style-neon .simauthor-homepage-link {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    text-shadow: 0 0 5px #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    font-weight: 600;
    text-decoration: none;
}

.simauthor-style-neon .simauthor-homepage-link:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    text-decoration: none;
}

.simauthor-style-neon .simauthor-social-link {
    background: transparent;
    border: 1px solid #0f3460;
    box-shadow: 0 0 10px rgba(15, 52, 96, 0.3);
}

.simauthor-style-neon .simauthor-social-link:hover {
    background: rgba(15, 52, 96, 0.2);
    box-shadow: 0 0 20px rgba(15, 52, 96, 0.5);
}

.simauthor-style-neon .simauthor-social-link i {
    color: #0f3460;
    text-shadow: 0 0 5px #0f3460;
}

/* 现代风格增强 */
.simauthor-style-modern .simauthor-social-link {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.simauthor-style-modern .simauthor-social-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.simauthor-style-modern .simauthor-social-link i {
    color: white;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .simauthor-social {
        justify-content: center;
        gap: 8px;
    }
    
    .simauthor-social-link {
        width: 36px;
        height: 36px;
    }
    
    .simauthor-social-link i {
        font-size: 14px;
    }
    
    .simauthor-style-creative::before {
        animation-duration: 30s;
    }
    
    .simauthor-style-artistic::before {
        animation-duration: 8s;
    }
}
/* ==
======== 不同样式的图标配色 ========== */

/* 默认样式图标配色 */
.simauthor-style-default .simauthor-stat-item i {
    color: #007cba;
    margin-right: 5px;
}

.simauthor-style-default .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 现代风格图标配色 */
.simauthor-style-modern .simauthor-stat-item i {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 5px;
}

.simauthor-style-modern .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 优雅风格图标配色 */
.simauthor-style-elegant .simauthor-stat-item i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 5px;
}

.simauthor-style-elegant .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 创意风格图标配色 */
.simauthor-style-creative .simauthor-stat-item i {
    color: #667eea;
    margin-right: 5px;
    animation: iconPulse 2s ease-in-out infinite;
}

.simauthor-style-creative .simauthor-homepage-link i {
    margin-right: 5px;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 专业风格图标配色 */
.simauthor-style-professional .simauthor-stat-item i {
    color: #007cba;
    margin-right: 5px;
    font-weight: 600;
}

.simauthor-style-professional .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 艺术风格图标配色 */
.simauthor-style-artistic .simauthor-stat-item i {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.simauthor-style-artistic .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 玻璃拟态图标配色 */
.simauthor-style-glass .simauthor-stat-item i {
    color: #333;
    margin-right: 5px;
    opacity: 0.8;
}

.simauthor-style-glass .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 霓虹风格图标配色 */
.simauthor-style-neon .simauthor-stat-item i {
    color: #00ffff;
    margin-right: 5px;
    text-shadow: 0 0 5px #00ffff;
    animation: neonIconGlow 2s ease-in-out infinite alternate;
}

.simauthor-style-neon .simauthor-homepage-link i {
    margin-right: 5px;
}

@keyframes neonIconGlow {
    from { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff; }
    to { text-shadow: 0 0 10px #00ffff, 0 0 15px #00ffff, 0 0 20px #00ffff; }
}

/* 极简风格图标配色 */
.simauthor-style-minimal .simauthor-stat-item i {
    color: #666;
    margin-right: 5px;
}

.simauthor-style-minimal .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 卡片风格图标配色 */
.simauthor-style-card .simauthor-stat-item i {
    color: #007cba;
    margin-right: 5px;
}

.simauthor-style-card .simauthor-homepage-link i {
    margin-right: 5px;
}

/* 统计信息图标通用样式 */
.simauthor-stat-item {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 5px;
}

.simauthor-stat-item i {
    margin-right: 5px;
    flex-shrink: 0; /* 防止图标被压缩 */
}

/* 统计信息图标悬停效果 */
.simauthor-stat-item:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* 主页链接图标间距 */
.simauthor-homepage-link i {
    margin-right: 6px;
}

/* 主页链接图标悬停效果 */
.simauthor-homepage-link:hover i {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}/* =======
=== 全新布局样式主题 ========== */

/* 时间线风格 - 优化配色和可读性 */
.simauthor-style-timeline {
    background: #ffffff;
    border: none;
    border-left: 4px solid #1976d2;
    border-radius: 0 12px 12px 0;
    position: relative;
    padding: 25px 25px 25px 35px;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
    color: #2c3e50;
}

.simauthor-style-timeline::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: #1976d2;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #1976d2;
}

.simauthor-style-timeline .simauthor-header {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
}

.simauthor-style-timeline .simauthor-avatar-wrapper {
    margin-right: 20px;
    margin-bottom: 0;
}

.simauthor-style-timeline .simauthor-avatar {
    width: 60px;
    height: 60px;
    border: 3px solid #1976d2;
}

.simauthor-style-timeline .simauthor-name {
    color: #0d47a1;
    font-size: 1.3em;
    margin-bottom: 8px;
    font-weight: 700;
}

.simauthor-style-timeline .simauthor-bio {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #1976d2;
    margin: 15px 0;
    color: #1565c0;
    font-weight: 500;
}

.simauthor-style-timeline .simauthor-stats {
    color: #1976d2;
    font-weight: 500;
}

.simauthor-style-timeline .simauthor-homepage-link {
    background: #1976d2;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.simauthor-style-timeline .simauthor-homepage-link:hover {
    background: #1565c0;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* 杂志风格 - 优化配色 */
.simauthor-style-magazine {
    background: #ffffff;
    border: 1px solid #e3f2fd;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(33, 150, 243, 0.1);
    color: #2c3e50;
}

.simauthor-style-magazine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1976d2 0%, #2196f3 50%, #03a9f4 100%);
}

.simauthor-style-magazine .simauthor-header {
    flex-direction: row-reverse;
    align-items: flex-start;
    padding: 20px 20px 0 20px;
    margin-bottom: 0;
}

.simauthor-style-magazine .simauthor-avatar-wrapper {
    margin-left: 20px;
    margin-right: 0;
    position: relative;
}

.simauthor-style-magazine .simauthor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 3px solid #e3f2fd;
    box-shadow: none !important; /* 确保移除头像阴影 */
}

.simauthor-style-magazine .simauthor-info {
    flex: 1;
    padding-top: 10px;
}

.simauthor-style-magazine .simauthor-name {
    font-size: 1.8em;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 5px;
    line-height: 1.2;
}

.simauthor-style-magazine .simauthor-stats {
    font-size: 0.85em;
    color: #546e7a;
    margin-top: 8px;
}

.simauthor-style-magazine .simauthor-bio {
    padding: 0 20px 15px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #37474f;
}

.simauthor-style-magazine .simauthor-footer {
    background: #f3f8ff;
    padding: 15px 20px;
    margin: 0;
    border-top: 1px solid #e3f2fd;
}

.simauthor-style-magazine .simauthor-homepage-link {
    background: #1976d2;
    color: white;
}

.simauthor-style-magazine .simauthor-homepage-link:hover {
    background: #1565c0;
}

/* 社交媒体风格 - 优化配色 */
.simauthor-style-social {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e3f2fd;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(33, 150, 243, 0.12);
    transition: all 0.2s ease;
}

.simauthor-style-social:hover {
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
    transform: translateY(-2px);
}

.simauthor-style-social .simauthor-header {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
    padding: 20px;
    margin-bottom: 0;
    position: relative;
    text-align: center;
}

.simauthor-style-social .simauthor-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #2196f3;
}

.simauthor-style-social .simauthor-avatar {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    box-shadow: none !important;
}

.simauthor-style-social .simauthor-name {
    color: white;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 5px;
}

.simauthor-style-social .simauthor-stats {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
}

.simauthor-style-social .simauthor-bio {
    padding: 20px;
    text-align: center;
    margin: 0;
    color: #37474f;
}

.simauthor-style-social .simauthor-footer {
    padding: 15px 20px;
    background: #f3f8ff;
    justify-content: center;
}

.simauthor-style-social .simauthor-homepage-link {
    background: #1976d2;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.simauthor-style-social .simauthor-homepage-link:hover {
    background: #1565c0;
}

/* 紧凑风格 - 优化配色 */
.simauthor-style-compact {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: #2c3e50;
}

.simauthor-style-compact .simauthor-header {
    margin-bottom: 10px;
}

.simauthor-style-compact .simauthor-avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border: 2px solid #e0e0e0;
    box-shadow: none !important;
}

.simauthor-style-compact .simauthor-name {
    font-size: 1.1em;
    margin-bottom: 3px;
    color: #37474f;
    font-weight: 600;
}

.simauthor-style-compact .simauthor-stats {
    font-size: 0.8em;
    color: #616161;
}

.simauthor-style-compact .simauthor-bio {
    margin: 10px 0;
    font-size: 0.9em;
    line-height: 1.4;
    color: #546e7a;
}

.simauthor-style-compact .simauthor-footer {
    margin-top: 10px;
    gap: 10px;
}

.simauthor-style-compact .simauthor-homepage-link {
    padding: 6px 12px;
    font-size: 0.8em;
    border-radius: 4px;
    background: #607d8b;
    color: white;
}

.simauthor-style-compact .simauthor-homepage-link:hover {
    background: #455a64;
}

.simauthor-style-compact .simauthor-social-link {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.simauthor-style-compact .simauthor-social-link:hover {
    background: #eeeeee;
}

.simauthor-style-compact .simauthor-social-link i {
    font-size: 12px;
    color: #616161;
}

/* 垂直风格 - 优化配色 */
.simauthor-style-vertical {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e3f2fd;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(33, 150, 243, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #2c3e50;
}

.simauthor-style-vertical .simauthor-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.simauthor-style-vertical .simauthor-avatar-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
    position: relative;
}

.simauthor-style-vertical .simauthor-avatar {
    width: 90px;
    height: 90px;
    border: 4px solid #e3f2fd;
    box-shadow: none !important; /* 确保移除头像阴影 */
}

.simauthor-style-vertical .simauthor-avatar-wrapper::after {
    content: '\f00c'; /* Font Awesome 勾选图标 */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 3px solid #fff;
}

.simauthor-style-vertical .simauthor-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* 图标和文字之间的间距 */
}

.simauthor-style-vertical .simauthor-stats {
    background: #f3f8ff;
    padding: 8px 15px;
    border-radius: 15px;
    display: inline-block;
    font-size: 0.85em;
    color: #546e7a;
    margin-top: 10px;
    border: 1px solid #e3f2fd;
}

.simauthor-style-vertical .simauthor-bio {
    margin: 20px 0;
    font-style: italic;
    color: #37474f;
    line-height: 1.6;
}

.simauthor-style-vertical .simauthor-footer {
    flex-direction: column;
    gap: 15px;
}

.simauthor-style-vertical .simauthor-homepage-link {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px; /* 图标和文字之间的间距 */
}

.simauthor-style-vertical .simauthor-homepage-link:hover {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
}

.simauthor-style-vertical .simauthor-social {
    justify-content: center;
}

/* 响应式适配新样式 */
@media (max-width: 768px) {
    .simauthor-style-timeline {
        padding: 20px 20px 20px 25px;
    }
    
    .simauthor-style-timeline .simauthor-header {
        flex-direction: column;
        text-align: center;
    }
    
    .simauthor-style-timeline .simauthor-avatar-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .simauthor-style-magazine .simauthor-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .simauthor-style-magazine .simauthor-avatar-wrapper {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .simauthor-style-social .simauthor-header {
        text-align: center;
    }
    
    .simauthor-style-vertical .simauthor-avatar {
        width: 70px;
        height: 70px;
    }
}

/* 新样式的图标配色 */
.simauthor-style-timeline .simauthor-stat-item i {
    color: #667eea;
    margin-right: 5px;
}

.simauthor-style-magazine .simauthor-stat-item i {
    color: #e74c3c;
    margin-right: 5px;
}

.simauthor-style-social .simauthor-stat-item i {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 5px;
}

.simauthor-style-compact .simauthor-stat-item i {
    color: #007cba;
    margin-right: 3px;
    font-size: 0.9em;
}

.simauthor-style-vertical .simauthor-stat-item i {
    color: #667eea;
    margin-right: 5px;
}



.simauthor-style-vertical .simauthor-homepage-link i {
    margin-right: 0; /* 重置margin，使用gap控制间距 */
}