/* 列表模板样式文件 */
/* 从ai_site_builder.php提取的完整CSS样式 */
#echart { height: 320px; width: 100%; margin-bottom: 15px; position: relative; overflow: hidden; } 
/* CSS变量定义 */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* 导航栏样式 */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.navbar-logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-left: 0.5rem;
    font-weight: normal;
}

.logo-reg {
    font-size: 0.7rem;
    vertical-align: super;
}

/* 手机版汉堡菜单按钮 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 1rem;
}

/* 手机版菜单样式 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background-color: var(--bg-color);
}

.mobile-menu-link i {
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

/* 左侧菜单样式 */
.left-menu-container {
    /* 核心属性 */
    flex-shrink: 0;
    width: 140px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    position: relative;
    
    /* 尺寸与样式 */
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    overflow-x: hidden;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 150px;
    bottom: 0;
    align-self: flex-start;
    min-height: calc(100vh - 150px);
    max-height: calc(100vh - 150px);
    
    /* 过渡动画 */
    transition: all 0.3s ease;
}

/* 左侧菜单头部固定 */
.left-menu-container .aside-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.left-menu-container .aside-ul {
    position: relative;
    z-index: 1;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

/* 左侧菜单第一个菜单项固定 */
.left-menu-container .aside-ul > li:first-child {
    position: sticky;
    top: 10px;
    z-index: 10;
    margin-bottom: 0;
    padding: 0.5rem 0;
    border-radius: 8px;
}

/* 保持原有的ioui-aside样式兼容性 */
.ioui-aside {
    flex-shrink: 0;
    width: 140px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow-x: hidden;
    position: sticky;
    top: 0.5rem;
    align-self: flex-start;
    max-height: calc(100vh - 0.5rem);
}

/* 菜单项样式 */
.aside-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aside-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: left;
}

.aside-btn:hover {
    background-color: #f8f9fa;
}

.aside-btn i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.aside-btn span {
    flex: 1;
}

/* 折叠按钮样式 */
.toggle-sidebar-btn {
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* 展开状态 */
.ioui-aside.expanded, .left-menu-container.expanded {
    width: 140px;
    transform: translateX(0);
}

/* 收起状态 */
.ioui-aside:not(.expanded), .left-menu-container:not(.expanded) {
    width: 50px;
    transform: translateX(0);
}

/* 收起状态下隐藏文本 */
.ioui-aside:not(.expanded) .aside-btn span, .left-menu-container:not(.expanded) .aside-btn span {
    display: none !important;
}

/* 收起状态下图标居中 */
.ioui-aside:not(.expanded) .aside-btn, 
.left-menu-container:not(.expanded) .aside-btn, 
.ioui-aside:not(.expanded) .aside-menu-item .aside-btn, 
.left-menu-container:not(.expanded) .aside-menu-item .aside-btn {
    justify-content: center !important;
    padding: 0.75rem 0;
    text-align: center;
}

/* 底部样式 */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    flex: 0 0 30%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 24px;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-logo span {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
}

.footer-description {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-right {
    flex: 0 0 70%;
}

.footer-links {
    margin-bottom: 15px;
    text-align: right;
}

.footer-links a {
    margin-left: 20px;
    font-size: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-friendlinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-friendlinks a {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-friendlinks a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .left-menu-container {
        display: none;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* 当前页面参数板块样式 - 紧凑设计 */
.website-meta {
    padding: 0 1rem 1rem;
}

.meta-stats {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 60px;
    border: 1px solid #e9ecef;
}

.meta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.meta-stat-item:hover {
    transform: translateY(-2px);
}

.meta-label {
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    line-height: 1.1;
}

/* 评分特殊样式 */
.score-baidu {
    color: #3170f5;
}

.score-sougou {
    color: #ff8c00;
}

.score-360 {
    color: #00b83f;
}

/* 推荐网址导航板块样式 - 横幅设计 */
.website-recommend {
    padding: 0 1rem 1rem;
}

.recommend-banner {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.recommend-banner-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.banner-item-image {
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 6px;
    padding: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.banner-item-image img {
    width: 155px;
    height: 95px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

/* 200x95尺寸图片样式 */
.banner-item-image.large img {
    width: 200px;
    height: 95px;
}

.banner-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.banner-item-content {
    flex: 1;
    min-width: 200px;
}

.banner-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.3rem;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.banner-item-title:hover {
    color: #3498db;
}

.banner-item-desc {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.banner-item-button {
    flex-shrink: 0;
}

.view-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.view-website-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(52, 152, 219, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .meta-stats {
        padding: 0.6rem 0.8rem;
        gap: 1rem;
        height: auto;
        flex-wrap: wrap;
    }
    
    .meta-stat-item {
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    .recommend-banner-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .banner-item-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        width: 100%;
    }
    
    .banner-item-content {
        width: 100%;
        min-width: 0;
    }
    
    .banner-item-button {
        align-self: flex-start;
    }
    
    .meta-label {
        font-size: 0.65rem;
    }
    
    .meta-value {
        font-size: 0.8rem;
    }
    
    .banner-item-title {
        font-size: 0.9rem;
    }
    
    .banner-item-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .meta-stat-item {
        flex: 1 1 100%;
    }
    
    .meta-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        height: auto;
    }
    
    .banner-item-image img {
        width: 40px;
        height: 40px;
    }
    
    .view-website-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* 工具类 */
.shadow {
    box-shadow: var(--shadow);
}

.h-100 {
    height: 100%;
}

.overflow-y-auto {
    overflow-y: auto;
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.ml-2 {
    margin-left: 0.5rem;
}

.icon-fw {
    width: 1em;
    text-align: center;
}

/* 主布局结构 */
.root-flex-A {
    display: flex;
    min-height: calc(100vh - 150px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.main-content-C {
    flex: 1;
    min-width: 0;
}

.content-wrapper {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* 内容标题区域 */
.content-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.content-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* 基本信息网格 */
.content-meta {
    margin-bottom: 2rem;
}

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

.meta-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.meta-item i {
    margin-right: 0.8rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.meta-item span {
    font-size: 1rem;
    color: var(--text-color);
}

/* 标题图片 */
.content-cover {
    margin-bottom: 2rem;
    text-align: center;
}

.cover-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* 内容简介 */
.content-brief {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary-color);
}

.content-brief h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-brief p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* 网站描述 */
.content-detail {
    margin-bottom: 2rem;
}

.content-detail h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.detail-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.detail-text p {
    margin-bottom: 1rem;
}

.detail-text ul, .detail-text ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* 联系信息 */
.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-color);
}

.contact-item i {
    margin-right: 0.8rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-item span {
    font-size: 1rem;
    color: var(--text-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* 统计数据 */
.stats-info {
    margin-bottom: 0;
}

.stats-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stats-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary-color);
}

.stats-item i {
    margin-right: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.stats-item span {
    font-size: 1rem;
    color: var(--text-color);
}

/* 用户状态组件样式 */
.user-status {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .root-flex-A {
        flex-direction: column;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .meta-grid,
    .contact-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .meta-item,
    .contact-item,
    .stats-item {
        padding: 0.8rem;
    }
}

.ml-2 {
    margin-left: 0.5rem;
}

.overflow-y-auto {
    overflow-y: auto;
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-target {
    outline: none;
}

.smooth {
    scroll-behavior: smooth;
}


/* 列表页专用样式 */

/* 面包屑导航 */
.breadcrumb-container {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.breadcrumb-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: white;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.breadcrumb i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 页面标题区域 */
.page-header {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.8rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* 列表内容区域 */
.list-content-area {
    margin-bottom: 2rem;
}

/* 列表项样式 */
.list-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
}

/* 综合评分角标样式 */
.rating-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.4rem 0.6rem;
    border-radius: 0 12px 0 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin: -1px -1px 0 0;
}

.rating-icon {
    font-size: 0.9rem;
    color: #ffd700;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.rating-score {
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    min-width: 1.8rem;
    text-align: center;
}

@keyframes ratingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6);
    }
}

/* 评分等级颜色 */
.rating-badge.excellent {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation: ratingPulseExcellent 2s ease-in-out infinite;
}

.rating-badge.good {
    background: linear-gradient(135deg, #17a2b8, #20c997);
}

.rating-badge.average {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.rating-badge.poor {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

@keyframes ratingPulseExcellent {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(40, 167, 69, 0.6);
    }
}

.list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* 左侧缩略图 */
.item-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.list-item:hover .thumbnail-img {
    transform: scale(1.05);
}

/* 右侧内容 */
.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 标题区域 */
.item-title-section {
    margin-bottom: 1rem;
}

.item-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.item-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.item-title a:hover {
    color: var(--primary-color);
}

.item-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 底部参数 */
.item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.meta-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-1px);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* 分页样式 */
.pagination-container {
    margin-top: 3rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.2);
    position: relative;
    overflow: hidden;
}

.pagination-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

/* 帝国CMS分页链接样式 */
.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

/* 状态标签样式 */
.record-type-active {
    color: #28a745;
    font-weight: 600;
}

.record-type-auto {
    color: #17a2b8;
    font-weight: 600;
}

.ai-status-pending {
    color: #ffc107;
    font-weight: 600;
}

.ai-status-success {
    color: #28a745;
    font-weight: 600;
}

.ai-status-failed {
    color: #dc3545;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .list-item {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .item-thumbnail {
        width: 100%;
        height: 150px;
    }
    
    .item-title {
        font-size: 1.2rem;
    }
    
    .item-meta {
        gap: 0.5rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

/* 专题关键词样式 */
.keyword-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem 0;
    margin: 1rem 0;
}

.keyword-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    animation: keywordTagPulse 3s ease-in-out infinite;
}

/* 随机背景色循环 */
.keyword-tag:nth-child(1) { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); color: white; }
.keyword-tag:nth-child(2) { background: linear-gradient(135deg, #4ecdc4, #88d3ce); color: white; }
.keyword-tag:nth-child(3) { background: linear-gradient(135deg, #45b7d1, #96d7e8); color: white; }
.keyword-tag:nth-child(4) { background: linear-gradient(135deg, #96ceb4, #b8e0d2); color: white; }
.keyword-tag:nth-child(5) { background: linear-gradient(135deg, #feca57, #ffeaa7); color: #2d3436; }
.keyword-tag:nth-child(6) { background: linear-gradient(135deg, #ff9ff3, #f368e0); color: white; }
.keyword-tag:nth-child(7) { background: linear-gradient(135deg, #54a0ff, #74b9ff); color: white; }
.keyword-tag:nth-child(8) { background: linear-gradient(135deg, #5f27cd, #341f97); color: white; }
.keyword-tag:nth-child(9) { background: linear-gradient(135deg, #00d2d3, #54a0ff); color: white; }
.keyword-tag:nth-child(10) { background: linear-gradient(135deg, #ff9f43, #feca57); color: white; }

/* 循环动画 */
@keyframes keywordTagPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* 每个标签不同的动画延迟，创建轮流跳动效果 */
.keyword-tag:nth-child(1) { animation-delay: 0s; }
.keyword-tag:nth-child(2) { animation-delay: 0.3s; }
.keyword-tag:nth-child(3) { animation-delay: 0.6s; }
.keyword-tag:nth-child(4) { animation-delay: 0.9s; }
.keyword-tag:nth-child(5) { animation-delay: 1.2s; }
.keyword-tag:nth-child(6) { animation-delay: 1.5s; }
.keyword-tag:nth-child(7) { animation-delay: 1.8s; }
.keyword-tag:nth-child(8) { animation-delay: 2.1s; }
.keyword-tag:nth-child(9) { animation-delay: 2.4s; }
.keyword-tag:nth-child(10) { animation-delay: 2.7s; }

/* 滑过效果 - 使用::after伪元素 */
.keyword-tag {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.keyword-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.keyword-tag:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.keyword-tag:hover::after {
    left: 100%;
    opacity: 1;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* 文章数量显示 - 使用span元素 */
.keyword-tag .count-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    min-width: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .keyword-tag-container {
        gap: 0.3rem;
        padding: 0.5rem 0;
    }
    
    .keyword-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .keyword-tag .count-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        margin-left: 0.3rem;
    }
}

@media (max-width: 480px) {
    .keyword-tag-container {
        justify-content: flex-start;
    }
    
    .keyword-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .keyword-tag .count-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.3rem;
        margin-left: 0.2rem;
    }
}


/* 标题链接样式 */
.title-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.title-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: all 0.3s ease;
    opacity: 0;
}

.title-link:hover::after {
    width: 100%;
    opacity: 1;
}

/* 栏目链接样式 */
.class-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.class-link:hover {
    color: inherit;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.class-link:hover .external-icon {
    transform: translateX(2px) scale(1.1);
    opacity: 1;
}

.class-name {
    transition: all 0.3s ease;
}


/* ========================
   统计数据可视化组件样式
   ======================== */

.stats-section {
    margin-bottom: -18px;
}

.stats-visualization {
    margin: 20px 0;
    width: 100%;
}

.stats-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
    font-size: 14px;
}

.tab-btn.active {
    background: #007bff;
    color: white;
}

.tab-btn:hover {
    background: #e0e0e0;
}

.tab-btn.active:hover {
    background: #0056b3;
}

.chart-container {
    display: none !important;
    height: 400px;
    width: 100%;
}

.chart-container.active {
    display: block !important;
}

.partbg {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
}

.tt {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.loading-status {
    text-align: center;
    padding: 40px;
    color: #666;
    width: 100%;
}

.error-message {
    text-align: center;
    padding: 40px;
    color: #dc3545;
    background: #f8d7da;
    border-radius: 8px;
    margin: 20px 0;
    width: 100%;
}

#echart-user, #echart-spider {
    width: 100%;
    height: 400px;
    min-height: 400px;
}

/* 免责声明样式 */
.disclaimer-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

.disclaimer-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 6px solid #ff6b6b;
    border-top: 1px solid #f0f0f0;
}

.disclaimer-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-title::before {
    content: "⚠️";
    font-size: 20px;
}

.disclaimer-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

/* 代码编辑器样式 */
.code-editor {
    position: relative;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--content-shadow);
    background-color: #1e1e1e;
}

.code-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #2c3e50;
    color: #fff;
    border-bottom: 1px solid #34495e;
}

.code-editor-title {
    font-size: 14px;
    font-weight: 600;
}

.code-editor-actions {
    display: flex;
    gap: 10px;
}

.editor-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.preview-btn {
    background-color: #4CAF50;
    color: white;
}

.preview-btn:hover {
    background-color: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.copy-btn {
    background-color: #2196F3;
    color: white;
}

.copy-btn:hover {
    background-color: #0b7dda;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.code-editor-content {
    position: relative;
    max-height: 600px;
    overflow: auto;
    background-color: #1e1e1e;
    border-radius: 0 0 8px 8px;
}

.code-editor-content pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
    font-family: 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.code-editor-content code {
    font-family: inherit;
    font-size: inherit;
}

/* 代码编辑器滚动条样式 */
.code-editor-content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.code-editor-content::-webkit-scrollbar-track {
    background: #2d2d2d;
}

.code-editor-content::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.code-editor-content::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* 预览弹窗样式 */
.preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow: auto;
    backdrop-filter: blur(5px);
}

.preview-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.preview-modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.preview-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #2c3e50;
    color: #fff;
    border-bottom: 1px solid #34495e;
}

.preview-modal-title {
    font-size: 18px;
    font-weight: 600;
}

.preview-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.preview-modal-body {
    padding: 0;
    height: calc(90vh - 120px);
    overflow: hidden;
}

.preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.preview-modal-footer {
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.preview-info {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .code-editor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .code-editor-actions {
        align-self: flex-end;
    }
    
    .code-editor-content {
        max-height: 400px;
    }
    
    .code-editor-content pre {
        padding: 15px;
        font-size: 13px;
    }
    
    .preview-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .preview-modal-body {
        height: calc(95vh - 120px);
    }
}





/* 特效预览样式 */
.code-preview-container {
    position: relative;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    /* 确保容器不会影响其他元素 */
    z-index: 1;
    isolation: isolate;
}

.code-preview-iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .code-preview-iframe {
        height: 200px;
    }
}



        /* 网站头部区域样式调整 */
        .website-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .website-title-icon {
            margin-right: 15px;
        }
        
        .website-title-content {
            flex: 1;
        }
        
        .website-header-actions {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 999;
        }
        
        /* SEO 按钮样式 */
        .seo-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: linear-gradient(135deg, #ff6b35, #f7931e, #ff9966, #ff5e62);
            background-size: 400% 400%;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(255, 107, 53, 0.3);
            position: relative;
            z-index: 999;
            animation: pulse 2s infinite, gradientShift 3s ease infinite;
        }
        
        .seo-btn:hover {
            background: linear-gradient(135deg, #f7931e, #ff6b35);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 16px rgba(255, 107, 53, 0.4);
            animation: none;
        }
        
        .seo-btn:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
        }
        
        /* 按钮脉冲动画 */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 6px rgba(255, 107, 53, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 16px rgba(255, 107, 53, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 6px rgba(255, 107, 53, 0.3);
            }
        }
        
        /* 按钮渐变动画 */
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .seo-btn i {
            font-size: 16px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .website-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .website-header-actions {
                align-self: flex-end;
            }
        }

/* SEO优化工具功能介绍样式 */
.seo-features-intro {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.seo-features-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-features-title i {
    color: #ffc107;
}

.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.seo-feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.seo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seo-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.seo-feature-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.seo-feature-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.seo-feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.seo-feature-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.seo-feature-keywords {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-feature-keywords li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.seo-feature-keywords li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.seo-comprehensive-features {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.seo-comprehensive-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.seo-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: var(--radius);
    border-left: 3px solid var(--secondary-color);
}

.seo-feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.seo-feature-item span {
    font-size: 0.95rem;
    color: var(--text-color);
}

.seo-feature-item strong {
    color: var(--primary-color);
}

.seo-keywords-section {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.seo-keywords-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-keywords-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.seo-keyword-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), #5dade2);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.seo-keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

/* AI SEO报告按钮样式 */
.seo-ai-report-section {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.seo-ai-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.seo-ai-button-container {
    position: relative;
}

.seo-ai-btn {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.seo-ai-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.seo-ai-btn:hover::before {
    left: 100%;
}

.seo-ai-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seo-ai-btn:active {
    transform: translateY(-2px) scale(1.01);
}

/* 轻度报告按钮 - 绿色 */
.seo-ai-btn-light {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.seo-ai-btn-light:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

/* 中度报告按钮 - 蓝色 */
.seo-ai-btn-medium {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.seo-ai-btn-medium:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* 深度报告按钮 - 紫色 */
.seo-ai-btn-deep {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.seo-ai-btn-deep:hover {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.3);
}

/* 按钮徽章样式 */
.seo-ai-btn-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

.seo-ai-badge-free {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.seo-ai-badge-dev {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

/* 按钮图标 */
.seo-ai-btn i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 按钮文字 */
.seo-ai-btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.seo-ai-btn-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* 徽章脉冲动画 */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* 按钮加载状态 */
.seo-ai-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.seo-ai-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .seo-features-intro {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .seo-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .seo-features-list {
        grid-template-columns: 1fr;
    }
    
    .seo-keywords-tags {
        gap: 0.5rem;
    }
    
    .seo-keyword-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .seo-ai-report-section {
        padding: 1.5rem;
    }
    
    .seo-ai-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .seo-ai-btn {
        padding: 1.2rem;
    }
    
    .seo-ai-btn i {
        font-size: 2rem;
    }
    
    .seo-ai-btn-text {
        font-size: 1rem;
    }
    
    .seo-ai-btn-desc {
        font-size: 0.85rem;
    }
}

/********滚动条美化********/
.tw-page{width:100%;height:36px;text-align:center;    margin: 40px 0px;}
.tw-page a{height:36px;background:#F4F4F4;color:#2e2e2e;font-size:14px;text-align:center;line-height:36px;margin:0 3px;display: inline-block;border-radius: 3px;padding:0 16px;}
.tw-page a:hover,.tw-page a.on{background:#FFE400;}
.tw-page i{color:#888888;font-size:14px;    padding: 6px;cursor: pointer;}
.pagination{width:100%!important;display: flex;justify-content: center;align-items: center;}
.pagination li{width:unset!important;height: 36px!important;margin:0 3px!important;display: inline-block;border-radius: 3px;}
.pagination li a,.pagination li span{display:block;background:#F4F4F4;color:#2e2e2e;font-size:14px;text-align:center;line-height:36px;padding:0 16px;}
.pagination li.active span,.pagination li a:hover{background:#FFE400;}

/********è¿”å›žæ—§å®˜ç½‘**********/
.return-old{width:185px;height:107px;position:absolute;z-index:999;right:0px;top:0px;background:url(/static/web/index/return-old.png) no-repeat;}
.return-old a{display:block;position:absolute;font-size:16px;color:#2e2e2e;width:68px;height:68px;right:0px;top:0px;padding-top: 10px;text-align:center;}
.return-old a i{font-family: å®‹ä½“;font-weight: bold;}
@media screen and (max-width:1366px){
	.return-old{display:none;}
}

::-webkit-scrollbar{width:16px;height:16px;}  
::-webkit-scrollbar-track,  
::-webkit-scrollbar-thumb{border-radius:999px;border:4px solid transparent;}  
::-webkit-scrollbar-track{box-shadow:0px 0px 15px rgba(153,153,153,1) inset;}  
::-webkit-scrollbar-thumb{min-height:20px;background-clip:content-box;box-shadow: 0 0 0 5px rgba(89,89,89,1) inset;}  
::-webkit-scrollbar-corner{/*background:transparent;*/}
