  [v-cloak] {
            display: none !important;
        }
        :root {
            --animate-duration: 2s;
            /* 所有动画默认时长改为2秒 */
        }

        /* 父容器：相对定位（核心！作为文字定位基准） + 匹配图片高度 */
        .abouts {
            position: relative;
            /* 必须：让子元素绝对定位参考该容器 */
            height: 720px;
            /* 匹配图片高度，避免容器高度塌陷 */
            width: 100%;
            overflow: hidden;
            /* 防止文字超出容器 */
        }

        /* 图片：铺满容器，消除默认空隙 */
        .abouts img {
            height: 100%;
            /* 改为100%，继承父容器高度，更灵活 */
            width: 100%;
            object-fit: cover;
            /* 保证图片不变形，铺满容器 */
            display: block;
            /* 消除图片底部默认空隙 */
        }

        .abouts .names {
            position: absolute;
            z-index: 2;
            /* 确保在图片上方 */
            font-family: MiSans Latin, MiSans Latin;
            font-weight: 600;
            font-size: 50px;
            color: #FFFFFF;
            left: 10%;
            top: 50%;
            transform: translate(-50%);
        }

        .navs {
            border-bottom: 1px solid #eee;
            /* 底部分隔线 */
            width: 1200px;
            margin: auto;
            padding: 30px 0 0 0;
        }

        .list {
            width: 1200px;
            margin: auto;
        }

        .tab-items {
            font-family: MiSans Latin, MiSans Latin;
            color: #595860;
        }

        .tab-items.active {
            font-family: MiSans Latin, MiSans Latin;
            font-weight: bold !important;
            color: #142261;
        }

        /* 导航容器：横向 Flex 布局 + 白色背景 + 居中 */
        .case-tabs {
            display: flex;
            max-width: 1200px;
            margin: 15px 40px 0 0;
            /* 整体白色背景，匹配设计稿 */
        }

        .tab-item-product:nth-child(n+2) {
            margin-left: 20px;
            /* 第二个及以后的项，左侧间距48px，匹配设计稿 */
        }

        /* 单个标签：均分宽度 + 文字居中 + 内边距控制大小 */
        .tab-item-product {
            /* 核心：4个标签均分容器宽度，各占25% */
            padding: 10px 20px;
            text-align: center;
            font-size: 16px;
            color: #595860;
            font-weight: 400;
            /* 非激活态文字：浅灰色 */
            cursor: pointer;
            transition: color 0.3s ease;
            /*  hover 过渡效果（可选） */
            font-family: MiSans Latin, sans-serif;
            background-color: #F8F8F8;

        }

        /* 激活态标签：深蓝色背景 + 白色文字（高亮核心） */
        .tab-item-product.active {
            background-color: #142261;
            /* 深蓝色，匹配设计稿的高亮背景 */
            color: #ffffff;
            /* 白色文字，和背景形成对比 */
        }

        /* 非激活态 hover 效果（可选，提升交互） */
        .tab-item-product:not(.active):hover {
            color: #142261;
            /* hover 时文字变为深蓝色，暗示可点击 */
        }

        /* 外层容器：上下浅灰分隔线 + 左右布局 + 居中 */
        .buying-guide {
            display: flex;
            align-items: center;
            /* 左右垂直居中 */
            justify-content: space-between;
            max-width: 1200px;
            margin: 30px auto;
            padding: 24px 0;
            border-top: 1px solid #eeeeee;
            background-color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;

            /* 核心：添加过渡效果，覆盖所有变化的属性 */
        }



        .buying-guide:hover {
            width: 1200px;
            height: 322px;
            background: #FFFFFF;
            box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.1);
            border-radius: 0px 0px 0px 0px;
            padding: 0 20px 0 20px;

        }


        .buying-guide:hover .date-num {
            color: #142261;
        }

        .buying-guide:hover .date-year {
            color: #142261;
        }

        .buying-guide:hover .guide-title {
            color: #142261;
        }


        .xian {
            border-bottom: 1px solid #eeeeee;

        }

        /* 左侧内容区：占比60%，内部垂直排列 */
        .guide-content {
            flex: 0 0 60%;
            padding-right: 30px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            /* 内部元素间距 */
        }

        /* 日期样式：数字大+深蓝色，年份小+浅灰色 */
        .guide-date {
            display: flex;
            flex-direction: column;
        }

        .date-num {
            font-family: MiSans Latin, MiSans Latin;
            font-weight: bold;
            font-size: 30px;
            color: #88878E;
            font-style: normal;
            text-transform: none;
        }

        .date-year {
            margin-top: 4px;
            font-family: MiSans Latin, MiSans Latin;
            font-weight: 400;
            font-size: 14px;
            color: #88878E;
            text-align: left;
            font-style: normal;
            text-transform: none;
        }

        /* 标题样式：加粗、深色、适中字号 */
        .guide-title {
            font-size: 18px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 12px;
            font-family: MiSans Latin, sans-serif;
        }

        /* 描述文字：浅灰色、行高、自动省略（匹配设计稿省略号） */
        .guide-desc {
            font-size: 14px;
            color: #666666;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            /* 固定3行省略，匹配设计稿 */
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-family: MiSans Latin, sans-serif;
        }

        /* 底部操作区：左右对齐 */
        .guide-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
        }

        /* Learn More：深蓝色文字 + 箭头，无下划线 */
        .guide-more {
            font-size: 14px;
            color: #1A365D;
            text-decoration: none;
            font-family: MiSans Latin, sans-serif;
            transition: color 0.2s ease;
        }

        .guide-more:hover {
            color: #0f2a4a;
        }

        /* 阅读量：浅灰色 + 图标 */
        .guide-reads {
            font-size: 12px;
            color: #999999;
            font-family: MiSans Latin, sans-serif;
        }

        /* 右侧图片区：占比38%，图片铺满 */
        .guide-image {
            flex: 0 0 38%;
        }

        .guide-img {
            width: 420px;
            height: 260px;
            display: block;
            cursor: pointer;
            /* 消除图片底部空隙 */
        }

        /* 响应式适配：小屏幕改为上下布局 */
        @media (max-width: 768px) {
            .buying-guide {
                flex-direction: column;
                gap: 24px;
                padding: 20px;
            }

            .guide-content {
                flex: 1;
                padding-right: 0;
            }

            .guide-image {
                flex: 1;
                width: 100%;
            }
        }

        
         /* 分页容器 */
         .pagination {
            display: flex;
            gap: 8px; /* 缩小间距更符合常规设计 */
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            padding: 0 0 30px 0;
        }

        /* 通用按钮样式 */
        .pagination-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            background-color: #ffffff;
            font-size: 16px;
            color: #666;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        /* 当前页激活样式 */
        .pagination-btn.active {
            background-color: #142261; /* 深蓝色 */
            color: #ffffff;
            border-color: #142261;
        }

        /* 禁用状态 */
        .pagination-btn:disabled {
            color: #ccc;
            cursor: not-allowed;
            border-color: #eee;
        }

        /* 箭头按钮样式 */
        .pagination-arrow {
            font-size: 14px;
            font-weight: 300;
        }