/***tab栏切换***/
        .news-module {
            width: 1290px;
            height: 378px;
            margin: 20px auto 0;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /* ===== Tab 栏 ===== */
        .tab-bar {
            display: flex;
            align-items: center;
            height: 52px;
            background: #f8f6f4;
            border-bottom: 2px solid #e8e4e0;
            padding: 0 24px;
            flex-shrink: 0;
        }

        .tab-group {
            display: flex;
            align-items: center;
            gap: 0;
            height: 100%;
        }

        .tab-btn {
            padding: 0 28px;
            height: 100%;
            border: none;
            background: transparent;
            font-size: 16px;
            font-weight: 500;
            color: #555;
            cursor: pointer;
            position: relative;
            transition: color 0.25s, background 0.25s;
            letter-spacing: 0.5px;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
        }

        .tab-btn:hover {
            color: #9c1d03;
        }

        .tab-btn.active {
            color: #9c1d03;
            border-bottom-color: #9c1d03;
            background: rgba(156, 29, 3, 0.04);
        }

        /* ===== 更多> 链接 - 靠右，颜色强制 #b0a8a2 ===== */
        .tab-more {
            margin-left: auto;
            font-size: 14px;
            color: #9c1d03 !important;   /* 明确指定并提高优先级 */
            text-decoration: none;
            transition: color 0.25s;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .tab-more:hover {
            color: #9c1d03 !important;   /* 悬停时变品牌色 */
        }

        .tab-more .arrow {
            font-size: 16px;
            transition: transform 0.2s;
        }

        .tab-more:hover .arrow {
            transform: translateX(3px);
        }

        /* ===== 内容区域 ===== */
        .tab-content-wrapper {
            flex: 1;
            display: flex;
            height: calc(378px - 52px);
            position: relative;
            align-items: center;
        }

        .tab-panel {
            display: none;
            width: 100%;
            height: 100%;
            flex-shrink: 0;
        }

        .tab-panel.active {
            display: flex;
            align-items: center;
        }

        /* ===== 左侧视频区域：439x300 ===== */
        .video-section {
            flex: 0 0 439px;
            height: 300px;
            align-self: center;
            margin: 0 12px 0 16px;
            padding: 0;
            position: relative;
        }

        .video-player {
            width: 100%;
            height: 100%;
            background: #1a1a1a;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .video-cover {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.4s ease;
            background: #2c2c2c;
        }

        .video-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 68px;
            height: 68px;
            background: rgba(255, 255, 255, 0.88);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.25s, background 0.25s;
            z-index: 3;
            pointer-events: none;
        }

        .play-btn::after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-left: 22px solid #9c1d03;
            border-top: 14px solid transparent;
            border-bottom: 14px solid transparent;
            margin-left: 6px;
        }

        .video-player:hover .play-btn {
            transform: translate(-50%, -50%) scale(1.08);
            background: rgba(255, 255, 255, 0.95);
        }

        .video-element {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            background: #000;
            display: none;
        }

        .video-element video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #0a0a0a;
            display: block;
        }

        .video-player.playing .video-cover {
            opacity: 0;
            pointer-events: none;
        }

        .video-player.playing .video-element {
            display: block;
        }

        /* ===== 右侧文章区域 ===== */
        .articles-section {
            flex: 1;
            height: 100%;
            padding: 12px 16px 12px 8px;
            display: flex;
            flex-direction: column;
        }

        .articles-grid {
            display: flex;
            height: 100%;
            width: 100%;
            position: relative;
            gap: 0;
        }

        .article-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            height: 100%;
        }

        .article-column:first-child {
            padding-right: 16px;
        }

        .article-column:last-child {
            padding-left: 16px;
        }

        /* ===== 竖线分隔（仅出现在文章内容区域） ===== */
        .articles-grid::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 12px;
            bottom: 12px;
            width: 1px;
            background: #e8e4e0;
            transform: translateX(-50%);
            pointer-events: none;
        }

        /* ===== 文章项：自适应高度 ===== */
        .article-item {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 4px 0;
            border-bottom: 1px solid #f0edeb;
            min-height: 0;
            overflow: hidden;
        }

        .article-item:last-child {
            border-bottom: none;
        }

        /* 缩略图 95x58 */
        .article-thumb {
            width: 95px;
            height: 58px;
            flex-shrink: 0;
            border-radius: 4px;
            object-fit: cover;
            background: #e8e4e0;
        }

        .article-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }

        .article-item .title {
            font-size: 16px;
            font-weight: 500;
            color: #222;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            max-height: 55px;
            transition: color 0.2s;
            cursor: default;
        }

        .article-item .title:hover {
            color: #9c1d03;
        }

        .article-item .meta {
            display: flex;
            align-items: center;
            margin-top: 2px;
            font-size: 13px;
            color: #b0a8a2;
            letter-spacing: 0.3px;
        }

        .article-item .meta .date {
            color: #b0a8a2;
        }


        /***焦点视频***/
        .focus-video-module {
            width: 100%;
            height: 454px;
            background: #9c1d03;
            margin-top: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .module-title {
            width: 1432px;
            padding-left: 8px;
            margin-bottom: 38px;
            flex-shrink: 0;
        }
        .module-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            text-align: center;
            letter-spacing: 2px;
            position: relative;
            padding-left: 18px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        /*.module-title h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 28px;
            background: #ffd700;
            border-radius: 2px;
        }*/
        .picScroll-left {
            width: 1432px;
            height: 290px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        .picScroll-left .hd {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            height: 0;
            z-index: 10;
        }
        .picScroll-left .hd .prev,
        .picScroll-left .hd .next {
            display: block;
           /* width: 24px;
            height: 45px;*/
            position: absolute;
            top: 50%;
            margin-top: -22px;
            /*background: rgba(255, 255, 255, 0.2);*/
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 90px;
            color: #fff;
            text-align: center;
            line-height: 45px;
            text-decoration: none;
            transition: background 0.3s;
            user-select: none;
        }
        .picScroll-left .hd .prev {
            left: 0;
        }
        .picScroll-left .hd .next {
            right: 0;
        }
        .picScroll-left .hd .prev:hover,
        .picScroll-left .hd .next:hover {
           /* background: rgba(255, 255, 255, 0.4);*/
        }
        .picScroll-left .bd {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        .picScroll-left .bd ul {
            position: relative;
            width: 100%;
            height: 100%;
            list-style: none;
        }
        .picScroll-left .bd ul li {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 315px;
            height: 226px;
            border-radius: 8px;
            overflow: hidden;
            background: #1a1a1a;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            transition: left 0.45s ease, width 0.45s ease, height 0.45s ease, z-index 0.2s;
            z-index: 1;
        }
        .picScroll-left .bd ul li.active {
            width: 395px;
            height: 285px;
            z-index: 5;
        }
        .video-cover-wrap {
            position: relative;
            flex-shrink: 0;
            width: 100%;
            height: 178px;
            overflow: hidden;
            transition: height 0.45s ease;
            background: #000;
        }
        .picScroll-left .bd ul li.active .video-cover-wrap {
            height: 221px;
        }
        .video-cover-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
        }
        .video-item:hover .video-cover-wrap img {
            transform: scale(1.03);
        }
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            pointer-events: none;
            transition: width 0.45s ease, height 0.45s ease;
        }
        .picScroll-left .bd ul li.active .play-overlay {
            width: 80px;
            height: 80px;
        }
        .play-overlay svg {
            width: 100%;
            height: 100%;
            display: block;
            filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
            transition: transform 0.3s;
        }
        .video-item:hover .play-overlay svg {
            transform: scale(1.08);
        }
        .video-player-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            background: #000;
            display: none;
        }
        .video-player-wrap video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #0a0a0a;
        }
        .video-item.playing .video-cover-wrap .video-cover-img {
            display: none;
        }
        .video-item.playing .video-player-wrap {
            display: block;
        }
        .video-bottom {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
            text-align: center;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            height: 48px;
            background: rgba(255, 255, 255, 0.88);
            color: #222;
            transition: height 0.45s ease, font-size 0.3s ease, background 0.45s ease, color 0.45s ease;
        }
        .picScroll-left .bd ul li.active .video-bottom {
            height: 66px;
            font-size: 15px;
            background: rgba(0, 0, 0, 0.65);
            color: #fff;
            backdrop-filter: blur(2px);
        }

        /***诊疗项目***/
        .zlxm_bt{width: 100%;text-align: center;margin: 65px auto 45px;font-size: 35px;color: #9c1d03;font-weight: 600;}
        .zlxm_zt{width: 1305px;height: 492px;margin: auto;display:flex;justify-content:center;align-items:center;}
        .zlxm_zt .front{width: 500px;height: 492px;}
        .zlxm_zt .later{width:805px;height: 492px;position: relative;}
        .zlxm_zt .later img{width: 100%;display: block;}
        .zlxm_zt .later .roster{width:638px;height:310px;position: absolute;left:-505px;top:87px;}
        .zlxm_zt .later .roster ul{width: 100%;display:flex;justify-content:center;align-items:center;flex-wrap:wrap;}
        .zlxm_zt .later .roster ul li{width: 302px;height: 86px;position: relative;border: 2px solid #cf1d03;margin-bottom:20px;}
        .zlxm_zt .later .roster ul li .quanbu{width: 100%;height: 100%;display:flex;justify-content:space-between;align-items:center;}
        .zlxm_zt .later .roster ul li .tpdyg{width:50px;margin-right:25px;margin-left: 25px;}
        .zlxm_zt .later .roster ul li .tpdyg img{width: 100%;display: block;}
         .zlxm_zt .later .roster ul li .tpdyg2{font-size:30px;color: #160203;width: 92px;margin-left: -74px;}
         .zlxm_zt .later .roster ul li .tpdyg3{font-size:28px;color: #8e8e8e;margin-right:18px;}
        .zlxm_zt .later .roster ul li .zbborder{position: absolute;left:-3px;top:-2px;width:4px;height: 90px;background: #c14d00;}
        .zlxm_zt .later .roster ul li:nth-child(1){margin-right:26px;}
        .zlxm_zt .later .roster ul li:nth-child(3){margin-right:26px;}
        .zlxm_zt .later .roster ul li:nth-child(5){margin-bottom: 0;margin-right:26px;}
        .zlxm_zt .later .roster ul li:nth-child(6){margin-bottom: 0;}
        /***专家团队***/
        .expert-section {
            margin: 80px auto 0;
            width: 100%;
            height: 703px;
            background: #e9e9e9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 40px;
            overflow: hidden;
        }
        /* 标题 */
        .expert-title {
            font-size: 35px;
            color: #9c1d03;
            font-weight: 700;
            letter-spacing: 4px;
            margin-bottom: 40px;
            flex-shrink: 0;
            line-height: 1;
        }
        /* 轮播容器 */
        .expert-carousel {
            width: 1400px;
            height: 540px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        .expert-carousel .bd {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .expert-carousel .bd ul {
            height: 100%;
            list-style: none;
            display: flex;
            padding: 0;
            margin: 0;
        }
        /* 每张专家卡 */
        .expert-carousel .bd ul li {
            flex: 0 0 250px;
            width: 250px;
            height: 540px;
            margin-right: 30px;
            background: #fff;
            border: 2px solid #ffffff;
            border-radius: 36px 0 36px 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
        }
        .expert-carousel .bd ul li:last-child {
            margin-right: 0;
        }
        /* 图片区域 */
        .expert-img {
            width: 100%;
            height: 350px;
            overflow: hidden;
            background: #d9d9d9;
            flex-shrink: 0;
        }
        .expert-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        /* 文本区域 */
        .expert-info {
            height: 186px;
            padding: 20px 16px 14px 26px;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            flex-shrink: 0;
        }
        .expert-info .name {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom:20px;
            line-height: 1.2;
        }
        .expert-info .title {
            font-size: 18px;
            color: #9c1d03;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .expert-info .desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        /* 隐藏默认标题导航 */
        .expert-carousel .hd {
            display: none !important;
        }
        /***特色医疗***/
    .feature-section {
        width: 100%;
        background: #fff;
        padding: 0 0 40px 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .feature-title {
        font-size: 35px;
        color: #9c1d03;
        font-weight: 700;
        letter-spacing: 4px;
        margin-top: 80px;
        margin-bottom: 40px;
        text-align: center;
        line-height: 1;
    }
    .feature-carousel {
        width: 1400px;
        height: 440px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        margin: auto;
    }
    .feature-carousel .bd {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .feature-carousel .bd ul {
        display: flex;
        height: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .feature-carousel .bd ul li {
        flex: 0 0 440px;
        width: 440px;
        height: 440px;
        margin-right: 40px;
        background: #ffffff;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        border-top-left-radius:45px;
    }
    .feature-carousel .bd ul li:last-child {
        margin-right: 0;
    }
    .feature-img {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: #d9d9d9;
        flex-shrink: 0;
    }
    .feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .feature-info {
        height: 190px;
        padding: 28px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        background: #fff;
    }
    .feature-info .title {
        font-size: 22px;
        color: #000000;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .feature-info .desc {
        font-size: 18px;
        color: #b3b3b3;
        line-height: 1.5;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .feature-info .arrow-circle {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        background: #a50006;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        line-height: 30px;
        cursor: default;
        box-shadow: 0 2px 8px rgba(165, 0, 6, 0.3);
        text-indent: 4px;
    }
    .feature-carousel .hd {
        display: none !important;
    }
    /***中西医结合看脑病***/
    .zxyjhknb_bt{width: 100%;text-align: center;font-size: 35px;color: #9c1d03;margin: 70px auto 0;font-weight: 600;}
    .container {
            width: 1305px;
            margin: 50px auto 0;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border-radius: 4px;
            /* 修改点：确保阴影和三角不被裁剪 */
            overflow: visible;
        }

        /* ===== Tab 栏 ===== */
        .tabs {
            display: flex;
            justify-content: center;
            height: 120px;
            background: #fff;
            position: relative;
            /* 让子元素阴影可见 */
            overflow: visible;
        }

        /* 每个选项卡 */
        .tab-item {
            width: 238px;
            height: 118px;
            border: 2px solid #9c1d03;
            background: #ffffff;
            color: #333333;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
            position: relative;
            margin-right: 26px;
            user-select: none;
            line-height: 1.3;
            padding: 6px 0;
        }
        .tab-item:last-child {
            margin-right: 0;
        }

        /* 主标题 */
        .tab-item .main-title {
            font-size: 20px;
            font-weight: 500;
            /* 未选中颜色 */
            color: #9c1d03;
        }
        /* 副标题 - 修改颜色为 #9c1d03 */
        .tab-item .sub-title {
            font-size: 20px;
            font-weight: 500;
            color: #9c1d03;      /* 未选中时与主标题同色 */
            margin-top: 12px;
        }

        /* 选中状态 */
        .tab-item.active {
            border-color: #e5d8bf;
            background: #9c1d03;
            color: #ffffff;
            box-shadow: 0 0 0 4px #a5371a;
            z-index: 2;
        }
        /* 选中时主副标题都变白 */
        .tab-item.active .main-title,
        .tab-item.active .sub-title {
            color: #ffffff;
        }

        /* 底部三角形指示器 */
        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-top: 16px solid #a5371a;
            filter: drop-shadow(0 2px 2px rgba(165, 55, 26, 0.3));
        }

        /* ===== 图片展示区 ===== */
        .tab-content {
            width: 1304px;
            height: 669px;
            margin: 10px auto;
            overflow: hidden;
            background: #e9e9e9;
        }

        .tab-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s ease;
        }

        /* 悬浮效果 */
        .tab-item:not(.active):hover {
            background: #fef3f0;
        }

        /***康瑞的***/
        .yygkwz{width: 100%;text-align: center;font-size: 35px;color: #9c1d03;font-weight: 600;margin:80px auto 0;overflow: hidden;}
        .dbbq {
      position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: #303030;
    margin-top: 40px;
    }
    .dbbq p{color: #fff;text-align: center;}
    /*自己新增*/
    .bie_zi{width:100%;float: left;margin: 0 0;background: #FFF;padding: 0;margin-right: -15px;margin-left: -15px;}
    .bie_zi2{width:100%;float: left;margin: 0 0;background: #FFF;padding: 0;}
    .bie_zi3{background-color: rgba(255, 255, 255, 0);float: left;margin: 0 0;padding: 0;margin-right: -15px;margin-left: -15px;}
    .bie_yyhj{background: #fff}
    .bie_li{
        width: 24% !important;
        float: left;
        margin-left: 3px;
        height: 52px;
        text-align: center;
        line-height: 52px;
        border: 1px #9c1d03 solid;
        cursor: pointer;
        border-color: #9c1d03;
        margin-bottom: 20px;
    }
    .bie_envito{border-bottom: none;height: auto;}
    #bie_envito ul li{font-size: 20px;}
    #bie_envito ul li:nth-child(1){background-color: #9c1d03;color: #FFF;}
    .bie_thmabo{width:100%;float: left;text-align: center;height:auto;margin-top:0;}
    .bie_thpadd{padding-left: 0!important}
    .bie_thmale{margin-left: 0!important}
    .bie_thmalepadd{margin-left: 0!important;padding-top: 0!important;width: auto!important;}
    .bie_wzizy{text-align: left;display: block;}
    .bie_anniu{margin-left: -13px;line-height: 10px;}
    .margin49{margin-left: 49px;}
