/* ========================================
   伊人网 - 通用页面样式
   资讯列表页、资讯详情页、搜索结果页
   ======================================== */

/* ========================================
   两栏布局基础样式
   ======================================== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    justify-content: center;
}

.two-column-detail {
    display: grid;
    grid-template-columns: 0.9fr 340px;
    gap: 60px;
    justify-content: center;
}

.column-main {
    min-width: 0;
}

.column-side {
    min-width: 0;
    position: sticky;
    top: 120px;
}

/* ========================================
   面包屑导航
   ======================================== */
.breadcrumb {
    background: var(--cream);
    padding: 16px 0;
    border-bottom: 1px solid var(--warm-gray-100);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.breadcrumb-item.active {
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.breadcrumb-separator svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   页面头部
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%);
    padding: 20px 0;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 300;
    color: #df8597;
    /* margin-bottom: 16px; */
    letter-spacing: 2px;
}

.page-description {
    font-size: 16px;
    color: #a47b58;
    max-width: 600px;
    font-weight: 300;
    margin: 0 auto;
}

/* ========================================
   内容区块
   ======================================== */
.content-section {
    padding: 40px 0 40px;
}

/* ========================================
   侧边栏组件
   ======================================== */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-lighter);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

/* 热门标签云 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: var(--warm-gray-50);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border: 1px solid var(--warm-gray-200);
}

.tag-item:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* 推荐列表 */
.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recommend-item a {
    display: flex;
    gap: 12px;
    transition: var(--transition-fast);
    align-items: flex-start;
}

.recommend-item a:hover {
    opacity: 0.8;
}

.recommend-item a:hover .recommend-content h4 {
    color: var(--primary);
}

.recommend-thumb {
    width: 80px;
    min-width: 80px;
    height: 70px;
    min-height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--warm-gray-100);
}

.recommend-thumb img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

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

.recommend-content h4 {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.recommend-category {
    font-size: 11px;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.recommend-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* 订阅组件 */
.subscribe-widget {
    background: var(--gradient-primary);
    color: var(--white);
}

.subscribe-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.3);
}

.subscribe-widget .widget-title::after {
    background: var(--white);
}

.subscribe-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-form input {
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    outline: none;
}

.subscribe-form input::placeholder {
    color: var(--text-muted);
}

.btn-subscribe {
    padding: 12px 24px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-subscribe:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* 广告位 */
.ad-widget {
    padding: 0;
    overflow: hidden;
}

.ad-banner {
    display: block;
    position: relative;
}

.ad-banner img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.ad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.ad-label {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255,255,255,0.9);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.ad-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   资讯列表页样式
   ======================================== */

/* 筛选标签 */
.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* 资讯卡片列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.news-link {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
}

.news-image {
    position: relative;
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.news-card:hover .news-title {
    color: var(--primary);
}

.news-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.news-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-views svg {
    width: 16px;
    height: 16px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.page-link:hover:not(.disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-link svg {
    width: 18px;
    height: 18px;
}

.page-ellipsis {
    color: var(--text-muted);
    padding: 0 8px;
}

/* ========================================
   资讯详情页样式
   ======================================== */

/* 文章头部 */
.article-header {
    /*margin-bottom: 50px;*/
}

.article-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.article-category a {
    color: var(--primary);
    font-weight: 500;
}

.category-separator {
    color: var(--text-light);
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.article-category-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.article-category-inline a {
    color: var(--primary);
    transition: var(--transition-fast);
}

.article-category-inline a:hover {
    color: var(--primary-dark);
}

.category-separator {
    color: var(--text-light);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.publish-date {
    font-size: 13px;
    color: var(--text-muted);
}

.article-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.stat-item svg {
    width: 18px;
    height: 18px;
}

/* 文章主图 */
.article-hero-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.article-hero-image figcaption {
    padding: 16px;
    background: var(--warm-gray-50);
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

/* 文章内容 */
.article-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: 24px;
}

.article-lead {
    font-size: 19px;
    color: var(--text-secondary);
    font-weight: 400;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 32px;
}

.article-body h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--warm-gray-100);
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px;
}


.article-body img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin: 30px auto;
}

/* 文章底部 */
.article-disclaimer {
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--warm-gray-50);
    border-left: 4px solid var(--warm-gray-300);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-disclaimer strong {
    color: var(--text-primary);
}

.article-footer {
    margin-top: 48px;
    /* padding-top: 32px; */
    border-top: 1px solid var(--warm-gray-200);
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tags-label {
    font-size: 14px;
    color: var(--text-muted);
}

.tag-link {
    padding: 6px 14px;
    background: var(--warm-gray-50);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tag-link:hover {
    background: var(--primary);
    color: var(--white);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 14px;
    color: var(--text-muted);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn.weibo {
    background: #E6162D;
    color: var(--white);
}

.share-btn.wechat {
    background: #07C160;
    color: var(--white);
}

.share-btn.qq {
    background: #12B7F5;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* 文章导航 */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    /* margin-top: 48px; */
    padding-top: 32px;
    border-top: 1px solid var(--warm-gray-200);
}

.nav-prev,
.nav-next {
    padding: 20px;
    background: var(--warm-gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--primary-lighter);
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.nav-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

/* 评论区 */
.comments-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid var(--warm-gray-200);
}

.comments-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.comments-count {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.comment-form {
    margin-bottom: 32px;
}

.comment-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    resize: vertical;
    outline: none;
    transition: var(--transition-fast);
    font-family: inherit;
}

.comment-form textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.btn-submit {
    margin-top: 12px;
    padding: 12px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-item {
    display: flex;
    gap: 16px;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-author {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.comment-time {
    font-size: 13px;
    color: var(--text-muted);
}

.comment-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.action-btn:hover {
    color: var(--primary);
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

.btn-load-more {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 32px;
    background: var(--warm-gray-50);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-load-more:hover {
    background: var(--warm-gray-100);
}

/* 作者卡片 */
.author-card {
    text-align: center;
}

.author-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
}

.author-card-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.author-card-bio {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-card-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.author-card-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-follow {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-follow:hover {
    background: var(--primary-dark);
}

/* 热门文章列表 */
.hot-articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: hot-rank;
}

.hot-articles-list li {
    margin-bottom: 16px;
}

.hot-articles-list a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hot-rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-gray-100);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}

.hot-articles-list li:nth-child(1) .hot-rank {
    background: var(--gradient-warm);
    color: var(--white);
}

.hot-articles-list li:nth-child(2) .hot-rank {
    background: var(--primary-light);
    color: var(--white);
}

.hot-articles-list li:nth-child(3) .hot-rank {
    background: var(--secondary);
    color: var(--white);
}

.hot-title {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: var(--transition-fast);
}

.hot-articles-list a:hover .hot-title {
    color: var(--primary);
}

/* ========================================
   搜索结果页样式
   ======================================== */

/* 搜索头部 */
.search-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 20px 0;
}

.search-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.search-keyword {
    color: var(--primary);
}

.search-stats {
    font-size: 15px;
    color: var(--text-secondary);
    /* margin-bottom: 16px; */
}

.search-stats strong {
    color: var(--primary);
}

.search-suggestions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-label {
    font-size: 14px;
    color: var(--text-muted);
}

.suggestion-link {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.suggestion-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* 搜索筛选 */
.search-filters {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.filter-groups {
    margin-bottom: 16px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    flex-shrink: 0;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    padding: 6px 14px;
    background: var(--warm-gray-50);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-option:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.filter-option.active {
    background: var(--primary);
    color: var(--white);
}

.filter-count {
    margin-left: 4px;
    opacity: 0.8;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--warm-gray-100);
}

.sort-label {
    font-size: 14px;
    color: var(--text-muted);
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.sort-select:focus {
    border-color: var(--primary-light);
}

/* 搜索结果列表 */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.no-results {
    text-align: center;
    margin-top: 100px;
    color: var(--primary);
    font-weight: bold;
}

.result-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.result-link {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.result-image {
    width: 180px;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.result-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.result-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

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

.result-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.highlight {
    color: var(--primary);
    font-weight: 500;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.result-category {
    padding: 4px 10px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.result-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.result-views svg {
    width: 14px;
    height: 14px;
}

/* 热门搜索 */
.hot-searches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0px 0px 12px 0px;
    border-bottom: 1px solid var(--warm-gray-100);
    transition: var(--transition-fast);
}

.hot-search-item:last-child {
    border-bottom: none;
}

.hot-search-item:hover {
    padding-left: 8px;
}

.search-rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-gray-100);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.hot-search-item:nth-child(1) .search-rank {
    background: var(--gradient-warm);
    color: var(--white);
}

.hot-search-item:nth-child(2) .search-rank {
    background: var(--primary-light);
    color: var(--white);
}

.hot-search-item:nth-child(3) .search-rank {
    background: var(--secondary);
    color: var(--white);
}

.search-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
}

/* 搜索页猜你喜欢样式 */
.sidebar-widget .beauty-feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    margin-bottom: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sidebar-widget .beauty-feature:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.sidebar-widget .beauty-feature img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
}

.sidebar-widget .beauty-content {
    padding: 10px 20px;
}

.sidebar-widget .beauty-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
    letter-spacing: 0px;
    line-height: 1.4;
}

.sidebar-widget .beauty-list h3,
.sidebar-widget .beauty-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: 400;
}

.sidebar-widget .beauty-content p {
    line-height: 1.4;
    font-size: 14px;
    color: var(--text-muted);
}

.sidebar-widget .beauty-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.sidebar-widget .beauty-item {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sidebar-widget .beauty-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.sidebar-widget .beauty-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.sidebar-widget .beauty-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: 400;
}

.sidebar-widget .beauty-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.search-trend {
    font-size: 12px;
    font-weight: 600;
}

.search-trend.up {
    color: var(--mint);
}

.search-trend.down {
    color: var(--primary);
}

.search-trend.same {
    color: var(--text-muted);
}

/* 搜索历史 */
.search-history {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.history-item svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.btn-clear-history {
    width: 100%;
    padding: 10px;
    background: var(--warm-gray-50);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-clear-history:hover {
    background: var(--warm-gray-100);
    color: var(--text-secondary);
}

/* ========================================
   页脚
   ======================================== */
.footer {
    background: var(--warm-gray-800);
    color: var(--white);
    /* padding: 60px 0 30px;
    margin-top: 80px; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    color: var(--warm-gray-300);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    font-size: 14px;
    color: var(--warm-gray-300);
    transition: var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 0px solid var(--warm-gray-700);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    /* color: var(--warm-gray-400); */
}

/* ========================================
   回到顶部按钮
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   关于我们页面样式
   ======================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section .section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* 时间线样式 */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 核心价值网格 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 联系方式网格 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   隐私政策页面样式
   ======================================== */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section .section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.privacy-intro {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--cream) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.privacy-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.privacy-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.privacy-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.privacy-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-note {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin: 24px 0;
}

.privacy-highlight {
    background: var(--primary-lighter);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: var(--primary);
    font-weight: 500;
    margin: 20px 0;
}

/* 使用方式网格 */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.usage-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.usage-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    margin-top: 0;
}

.usage-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* 权利网格 */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.right-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.right-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    margin-top: 0;
}

.right-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.privacy-contact {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.privacy-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-info {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

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

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

.privacy-thanks {
    text-align: center;
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--cream) 100%);
    border-radius: var(--radius-lg);
}

/* ========================================
   响应式设计
   ======================================== */

/* 平板设备 */
@media (max-width: 1024px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .column-side {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }

    .ad-widget {
        grid-column: span 2;
    }

    .article-title {
        font-size: 28px;
    }

    .result-link {
        flex-direction: column;
    }

    .result-image {
        width: 100%;
        height: 200px;
    }
}

/* 手机设备 */
@media (max-width: 768px) {

.page-description {
    font-size: 12px;
    color: #a47b58;
    max-width: 600px;
    font-weight: 300;
    margin: 0 auto;
}
.article-title {
    margin-bottom: 6px;
}
    .two-column,
    .two-column-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .column-side {
        position: static;
        grid-template-columns: 1fr;
        order: 2;
    }

    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-list {
        /* padding: 0 12px; */
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 13px;
    }

    .page-header {
        padding: 20px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .content-section {
        padding: 24px 0 0;
    }

    .ad-widget {
        grid-column: span 1;
    }

    /* 资讯列表页 */
    .filter-tabs {
        gap: 8px;
        margin-bottom: 24px;
    }

    .news-meta {
        font-size: 12px;
    }
    .filter-tab {
        padding: 4px 8px;
        font-size: 12px;
    }

    .news-link {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .news-image {
        width: 100%;
        height: 200px;
    }

    .news-content {
        padding: 0;
    }

    .news-title {
        font-size: 17px;
    }

    .news-excerpt {
        font-size: 14px;
    }

    /* 资讯详情页 */
    .article-header {
        /*margin-bottom: 30px;*/
    }
.article-disclaimer {
    padding: 16px 10px;
}
    .article-title {
        font-size: 24px;
    }

    .article-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .article-category-inline {
        font-size: 13px;
        gap: 20px;
        flex-shrink: 0;
    }

    .article-stats {
        gap: 12px;
        flex-shrink: 0;
    }

    .stat-item {
        font-size: 12px;
        gap: 10px;
    }

    .stat-item svg {
        width: 14px;
        height: 14px;
    }

    .article-header {
        /* padding: 0 12px; */
    }

    .article-title {
        font-size: 22px;
        line-height: 1.4;
    }

    /* .article-hero-image {
        margin: 0 -12px 24px;
        border-radius: 0;
    } */

    .article-hero-image figcaption {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* .article-body {
        font-size: 16px;
        padding: 0 12px;
    } */

    .article-body h2 {
        font-size: 20px;
        margin: 32px 0 16px;
    }

    .article-body h3 {
        font-size: 18px;
    }

    .article-body img {
        max-width: 100%;
        border-radius: var(--radius-lg);
        margin: 30px auto;
    }

    .article-lead {
        font-size: 17px;
        padding-left: 16px;
    }

    .article-footer {
        padding: 0 12px;
    }

    .article-tags {
        flex-wrap: wrap;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }

    .comment-item {
        gap: 12px;
    }

    .comment-avatar {
        width: 36px;
        height: 36px;
    }

    /* 搜索结果页 */
    .search-header {
        padding: 24px 0;
    }

    .search-title {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .search-suggestions,
    .search-filters {
        display: none;
    }

    .result-link {
        padding: 16px;
        gap: 16px;
    }

    .result-image {
        height: 160px;
    }

    .result-title {
        font-size: 16px;
    }

    /* 分页 */
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }

    .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    /* 页脚 */
    .footer {
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }

    .article-title {
        font-size: 20px;
    }

    /* .sidebar-widget {
        padding: 16px;
        margin: 0 12px 20px;
    } */

    .widget-title {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }

    .recommend-item a {
        gap: 10px;
    }

    .recommend-thumb {
        width: 80px;
        min-width: 80px;
        height: 70px;
        min-height: 70px;
    }

    .recommend-content h4 {
        font-size: 14px;
    }

    .tag-item {
        padding: 6px 12px;
        font-size: 13px;
    }

    .news-image {
        height: 160px;
    }

    .result-image {
        height: 140px;
    }

    .news-link {
        padding: 12px;
        gap: 12px;
    }
}

/* ========================================
   关于我们 & 隐私政策页面响应式
   ======================================== */
@media (max-width: 1024px) {
    /* 关于我们页面 */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 隐私政策页面 */
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 关于我们页面 */
    .about-section {
        margin-bottom: 40px;
    }

    .about-section .section-title {
        font-size: 22px;
    }

    .about-text p {
        font-size: 15px;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-item {
        margin-bottom: 24px;
        padding-left: 16px;
    }

    .timeline-year {
        font-size: 16px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 20px;
    }

    /* 隐私政策页面 */
    .privacy-section {
        margin-bottom: 32px;
    }

    .privacy-section .section-title {
        font-size: 20px;
    }

    .privacy-intro {
        padding: 20px;
    }

    .privacy-text {
        font-size: 14px;
    }

    .privacy-text h3 {
        font-size: 16px;
        margin: 20px 0 10px;
    }

    .usage-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .usage-item {
        padding: 20px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .right-card {
        padding: 20px;
    }

    .contact-info {
        padding: 20px;
    }

    .privacy-thanks {
        padding: 20px;
        font-size: 15px;
    }
}
