
        :root {
            --primary-color: #f6b333;
            --text-color: #333;
            --container-width: 1134px;
            --pc-banner-height: 535px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: "Microsoft YaHei", sans-serif; color: var(--text-color); line-height: 1.6; }

        /* --- 核心布局容器 --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            height: 100%;
        }
		.clear{ clear:both}
		.bgcolor-hui{    background-color: #f7f8f9;}
		.bgcolor-bai{    background-color: #ffffff;}
		.p3020{ padding:30px 20px}
		.pad-top50{ padding-top:50px;}
		.juzhong{ text-align:center}
		.h30{ height:30px;}
		.h50{ height:50px;}
		.h100{ height:100px;}
		
		

        /* --- 1. 顶部导航栏 --- */
        .header {
            height: 80px;
            background: #fff;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f5f5f5;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo img { height: 45px; vertical-align: middle; }
        
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { text-decoration: none; color: #444; font-size: 17px; font-weight:500; transition: 0.3s; }
        .nav-links a:hover { color: var(--primary-color); }

        .header-right { display: flex; align-items: center; gap: 15px; }
        .btn-eval {
            background: var(--primary-color); border: none; padding: 8px 20px;
            border-radius: 6px; color: white; font-weight: bold; cursor: pointer;
        }
        .phone { font-weight: bold; color: #444; font-size: 14px; }

        .mobile-menu-btn { display: none; font-size: 26px; background: none; border: none; cursor: pointer; }

        /* --- 2. 轮播图区域 (Swiper) --- */
        .swiper {
            width: 100%;
            height: var(--pc-banner-height);
            position: relative;
            background: #fdfdfd;
        }
        .swiper-slide { position: relative; width: 100%; height: 100%; }
        
        /* 响应式图片切换 */
        .banner-pc { display: block; width: 100%; height: 100%; object-fit: cover; }
        .banner-mobile { display: none; width: 100%; height: 100%; object-fit: cover; }

        /* 轮播图左右控制 */
        .swiper-button-next, .swiper-button-prev {
            color: #fff !important;
            background: rgba(0,0,0,0.1);
            width: 44px !important; height: 44px !important; border-radius: 50%;
        }
        .swiper-button-next:after, .swiper-button-prev:after { font-size: 18px !important; }

        /* --- 3. 悬浮表单 --- */
        .form-overlay {
            position: absolute;
            top: 0; left: 50%; transform: translateX(-50%);
            width: 100%; height: 100%; z-index: 20; pointer-events: none;
        }
        .form-box {
            position: absolute;
            right: 15px; top: 50%; transform: translateY(-50%);
            background: white; width: 320px; padding: 25px;
            border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); pointer-events: auto;
        }
        .form-box h3 { font-size: 18px; margin-bottom: 20px; text-align: left; color: #333; }
        .form-box input, .form-box select {
            width: 100%; padding: 12px; margin-bottom: 12px; border: 1px solid #eee; border-radius: 4px; outline: none;
        }
        .code-row { display: flex; gap: 10px; }
        .send-code { border: none; background: none; color: #999; font-size: 12px; cursor: pointer; white-space: nowrap; line-height: 40px;}
        .privacy { font-size: 12px; color: #999; display: flex; align-items: center; margin-bottom: 15px; }
        .privacy input { width: auto; margin-right: 8px; }
        .submit-btn {
            width: 100%; background: var(--primary-color); color: white; border: none; 
            padding: 14px; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer;
        }

        /* --- 4. 康复平台图标区域 (新补充) --- */
        .platform-section {
            padding: 60px 0;
            background: #fff;
            text-align: center;
        }
        .section-title { font-size: 24px; color: #333; font-weight: bold; margin-bottom: 8px; }
        .section-line { width: 35px; height: 3px; background: var(--primary-color); margin: 0 auto 40px; }

        .feature-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        .feature-item {
            flex: 1; min-width: 140px;
            display: flex; flex-direction: column; align-items: center;
        }
        /* 文字上面是图片 */
        .feature-item img {
            width: 120px; height: 90px; /* 按照原图大小调整 */
            margin-bottom: 15px;
            transition: transform 0.3s;
        }
        .feature-item:hover img { transform: translateY(-5px); }
        .feature-item span { font-size: 16px; color: #333; font-weight: 500; }
		.feature-item span a{ font-size: 16px; color: #333; font-weight: 500; text-decoration:none }
		

        /* --- 5. 响应式规则 --- */
        @media (max-width: 768px) {
            /* 导航 */
            .mobile-menu-btn { display: block; }
            .nav-links {
                display: none; position: absolute; top: 80px; left: 0; width: 100%;
                background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            .header-right { display: none; }

            /* 轮播图 */
            .banner-pc { display: none; }
            .banner-mobile { display: block; }
            .swiper { height: 400px; }
            .swiper-button-next, .swiper-button-prev { display: none !important; }

            /* 表单：手机版隐藏 */
            .form-overlay { display: none !important; }

            /* 图标栏 */
            .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
            .feature-item img { width: 80px; height: 80px; }
        }


/* --- 实证体系板块专属样式 (rice-v3-) --- */

.rice-v3-system-section {
    padding: 70px 0;
    background-color: #fffaf5; /* 设计图中的浅米色底色 */
    text-align: center;
}

/* 板块标题区 */
.rice-v3-header { margin-bottom: 50px; }
.rice-v3-title { font-size: 26px; color: #333; font-weight: bold; margin-bottom: 10px; }
.rice-v3-subtitle { font-size: 15px; color: #666; margin-bottom: 15px; }
.rice-v3-line { width: 35px; height: 3px; background-color: #f6b333; margin: 0 auto; }

/* 网格系统 - PC版 */
.rice-v3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列排列 */
    gap: 40px 30px;
    margin-bottom: 50px;
}

/* 卡片容器 */
.rice-v3-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* 卡片标题头部：黄色斜角设计 */
.rice-v3-card-head {
    background: #fddb8a; /* 浅黄色 */
    padding: 12px 25px;
    border-radius: 12px 12px 0 0;
    /* 核心点：利用 clip-path 实现右侧斜边 */
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    display: flex;
    align-items: center;
    width: fit-content;
    min-width: 280px;
    position: relative;
    z-index: 2;
}

/* 背景中的大字母装饰 */
.rice-v3-letter {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    margin-right: 15px;
    line-height: 1;
}

.rice-v3-head-text h3 { font-size: 19px; color: #333; margin: 0; }
.rice-v3-head-text p { font-size: 13px; color: #666; margin: 0; font-weight: 500; }

/* 卡片描述主体：白色方块 */
.rice-v3-card-body {
    background: #ffffff;
    padding: 35px 25px 25px;
    border-radius: 0 0 10px 10px;
    margin-top: -8px; /* 向上挤一点，与头部衔接 */
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    min-height: 120px;
    position: relative;
    z-index: 1;
}
.rice-v3-card-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
}

/* 底部按钮样式 */
.rice-v3-primary-btn {
    background-color: #f6b333;
    color: #fff;
    border: none;
    padding: 14px 50px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}
.rice-v3-primary-btn:hover {
    background-color: #e6a21f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 179, 51, 0.3);
}

/* --- 响应式适配 (rice-v3-) --- */

@media (max-width: 768px) {
    .rice-v3-grid {
        grid-template-columns: 1fr; /* 手机端单列排列 */
        gap: 30px;
    }
    .rice-v3-card-head {
        min-width: 240px;
        width: 85%;
    }
    .rice-v3-card-body {
        min-height: auto;
    }
    .rice-v3-title { font-size: 21px; }
}


.dm-experts-section { padding: 60px 0 0px 0; background: linear-gradient(to bottom, #ffffff, #fdfbf8, #fffaf5);text-align: center; overflow: hidden; }
.dm-experts-section2 { padding:0px 0 60px 0; background: #fffaf5; text-align: center; overflow: hidden; }
.dm-experts-header h2 { font-size: 26px; color: #333; margin-bottom: 8px; }
.dm-experts-header p { font-size: 15px; color: #888; margin-bottom: 12px; }
.dm-experts-line { width: 35px; height: 3px; background: #f6b333; margin: 0 auto 40px; }

/* 顶部四个固定位置 */
.dm-experts-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.dm-experts-main-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.dm-experts-img-wrap { width: 100%; aspect-ratio: 4/5; background: #eee; }
.dm-experts-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dm-experts-info { padding: 15px; background: #fddb8a; min-height: 100px; display: flex; flex-direction: column; justify-content: center; }
.dm-experts-info h3 { font-size: 18px; margin-bottom: 5px; }
.dm-experts-info p { font-size: 13px; color: #666; line-height: 1.4; }

/* 底部滚动区域 */
.dm-experts-scroll-container {
   width: 100vw;       /* 核心：占满视口宽度 */
  overflow: hidden;   /* 核心：切掉屏幕外的部分 */
  margin: 0;          /* 确保没有外边距 */
  padding: 0;
}
.dm-experts-scroll-track {
    display: flex;
    width: max-content; /* 核心：让内部元素撑开宽度 */
    gap: 35px;
}
.dm-experts-sub-card {
    width: 360px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    flex-shrink: 0;
}
.dm-experts-sub-text { text-align: left; }
.dm-experts-sub-text h4 { font-size: 18px; margin-bottom: 5px; }
.dm-experts-sub-text p { font-size: 14px; color: #888; line-height: 1.4; }
.dm-experts-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: #eee; }

/* 按钮 */
.dm-experts-btn {
    background: #f6b333; color: #fff; border: none; padding: 12px 40px;
    border-radius: 4px; font-weight: bold; margin-top: 40px; cursor: pointer;
}

/* 动画定义 */
@keyframes dmScrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 核心：刚好滚完第一组内容 */
  }
}

/* 响应式 */
@media (max-width: 992px) {
    .dm-experts-top-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .dm-experts-top-grid { grid-template-columns: 1fr; }
}


/*首页通用*/
.universal-section {
    padding: 50px 0;
    background-color: #ffffff; /* è®¾è®¡å›¾ä¸­çš„æµ…ç±³è‰²åº•è‰² */
}

.universal-header { margin-bottom: 50px; text-align:center}
.universal-title { font-size: 26px; color: #333; font-weight: bold; margin-bottom: 10px; }
.universal-subtitle { font-size: 15px; color: #666; margin-bottom: 15px; }
.universal-line { width: 35px; height: 3px; background-color: #f6b333; margin: 0 auto; }

.universal-box{}




/* 容器样式 */
.case-scroll-wrapper {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
}

.case-scroll-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.case-scroll-divider {
    width: 40px;
    height: 3px;
    background-color: #f1c40f; /* 这里的黄色根据设计图调整 */
    margin: 0 auto 40px;
}

/* 滚动容器：全屏溢出隐藏 */
.case-scroll-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
	padding:50px 0;
}

/* 轨道：设置动画 */
.case-scroll-track {
    display: flex;
    width: max-content; /* 宽度由内容决定 */
    animation: scroll-left 30s linear infinite; /* 时间越短速度越快 */
}

/* 悬停时暂停 */
.case-scroll-track:hover {
    animation-play-state: paused;
}

/* 单个卡片外层 */
.case-scroll-item {
    padding: 0 10px;
    flex-shrink: 0;
}

/* 卡片内部设计 */
.case-card {
    width: 280px; /* 响应式宽度 */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
    height: 100%;
    padding: 30px 20px 30px 20px;
}

.case-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.case-card p {
    padding: 15px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* 无缝滚动动画关键帧 */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        /* 注意：这里的百分比取决于你重复后的总长度。
           通常设置为 -50% 如果你完整复制了一份内容 */
        transform: translateX(-50%);
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .case-card {
        width: 220px;
    }
    .case-card img {
        height: 140px;
    }
    .case-scroll-title {
        font-size: 20px;
    }
}



/* 基础容器 */
.app-promo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 上半部分布局 */
.app-promo-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 100px;
}

.app-promo-phone-box {
    flex: 1;
    text-align: right;
}

.app-promo-phone-img {
    max-width: 380px;
    width: 100%;
    height: auto;
}

.app-promo-info {
    flex: 1;
    text-align:center;
}

.app-promo-brand-img {
    width: 180px;
    margin-bottom: 25px;
}

.app-promo-slogan {
    font-size: 32px;
    color: #333;
    margin: 10px 0;
    font-weight: bold;
}

.app-promo-subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.app-promo-download {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

/* 下半部分布局 */
.app-promo-bottom {
    text-align: center;
}

.app-promo-follow-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.app-promo-divider {
    width: 30px;
    height: 3px;
    background-color: #f1c40f;
    margin: 0 auto 40px;
}

/* 二维码矩阵 */
.app-promo-qr-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.app-promo-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-promo-qr-item img {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
}

.app-promo-qr-item span {
    font-size: 13px;
    color: #666;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .app-promo-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .app-promo-phone-box, .app-promo-info {
        text-align: center;
    }
    .app-promo-qr-grid {
        grid-template-columns: repeat(3, 1fr); /* 平板端每行3个 */
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .app-promo-slogan {
        font-size: 24px;
    }
    .app-promo-qr-grid {
        grid-template-columns: repeat(2, 1fr); /* 手机端每行2个 */
    }
}


.site-footer-wrapper {
    background-color: #1361e0; /* 匹配图中的橙黄色 */
    padding: 30px 0;
    color: #fff;
    font-size: 14px;
    line-height: 2;
}

.site-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* 左侧导航 */
.site-footer-nav {
    flex-shrink: 0;
}

.site-footer-label {
    font-weight: bold;
    margin-right: 15px;
}

.site-footer-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.site-footer-nav a, .site-footer-info a {
    color: #fff;
    text-decoration: none;
}

.site-footer-nav a:hover, .site-footer-info a:hover {
    text-decoration: underline;
}

/* 分割线 */
.site-footer-line {
    width: 1px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0 40px;
}

/* 右侧信息 */
.site-footer-info {
    flex-grow: 1;
}

.site-footer-beian {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.site-footer-beian img {
    width: 16px;
    height: 16px;
}

/* 响应式处理 */
@media (max-width: 992px) {
    .site-footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .site-footer-line {
        width: 60%;
        height: 1px;
        margin: 20px auto;
    }

    .site-footer-row {
        justify-content: center;
        margin-bottom: 10px;
    }

    .site-footer-label {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .site-footer-wrapper {
        font-size: 12px;
        padding: 20px 10px;
    }
    .site-footer-row {
        gap: 10px;
    }
}


/* 容器设置 */
.dmxm-main-container {
    width: 100%;
    font-family: "Microsoft YaHei", sans-serif;
}

/* Banner 响应式设置 */
.dmxm-banner {
    width: 100%;
    height: 535px; /* PC端固定高度 */
    overflow: hidden;
}

.dmxm-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保证图片在固定高度下不缩放变形 */
}

/* 内容区域布局 */
.dmxm-content-wrapper {
    max-width: 1200px;
    margin: 0px auto 0px auto;
    display: flex;
    padding: 30px 25px;
	background:#fff;
    gap: 40px;
}

/* 左侧导航样式 */
.dmxm-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.dmxm-nav-menu {
    border: 1px solid #e0e0e0;
}

.dmxm-nav-item {
    display: block;
    padding: 15px 20px;
    text-align: center;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
    font-size: 15px;
}

.dmxm-nav-item:last-child {
    border-bottom: none;
}

/* 高亮样式 (Active) */
.dmxm-nav-item.active {
    background-color: #f1b333; /* 对应图中的橙黄色 */
    color: #000;
    font-weight: bold;
}

.dmxm-nav-item:hover:not(.active) {
    background-color: #f9f9f9;
}

/* 右侧内容样式 */
.dmxm-article-body {
    flex: 1;
}

.dmxm-article-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.dmxm-article-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #f1b333;
}
.dmxm-text-content img {border:0px;max-width: 100% !important;height: auto !important;}
.dmxm-text-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 16px;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .dmxm-banner {
        height: 300px; /* 平板端降低高度 */
    }
    .dmxm-content-wrapper {
        flex-direction: column; /* 垂直排列 */
    }
    .dmxm-sidebar {
        width: 100%;
    }
    .dmxm-nav-menu {
        display: flex;
        flex-wrap: wrap;
    }
    .dmxm-nav-item {
        flex: 1;
        min-width: 120px;
        border-right: 1px solid #e0e0e0;
    }
}

@media (max-width: 480px) {
    .dmxm-banner {
        height: 180px; /* 手机端高度 */
    }
    .dmxm-nav-item {
        font-size: 13px;
        padding: 10px 5px;
    }
}


/* 容器基础样式 */
.dmxm-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* 通用板块间距 */
.dmxm-section {
    margin-bottom: 60px;
    text-align: center;
}

/* 标题样式 */
.dmxm-sec-header {
    margin-bottom: 30px;
}

.dmxm-sec-header h2 {
    font-size: 28px;
    color: #333;
    margin-top: 10px;
    letter-spacing: 1px;
}

.dmxm-tag {
    color: #f1b333;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

/* 红框图片容器 - 响应式处理 */
.dmxm-img-box {
    width: 100%;
    margin: 20px 0;
    /* 模拟红框效果，实际部署时可删除 border */
    border: 1px solid transparent; 
}

.dmxm-resp-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* 增加阴影或圆角提升质感 */
    border-radius: 4px;
}

/* 文字列表说明区域 */
.dmxm-info-list {
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
}

.dmxm-info-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.dmxm-info-item h4 {
    color: #0056b3; /* 蓝色标题 */
    margin-bottom: 8px;
    font-size: 18px;
}

.dmxm-info-item p {
    font-size: 15px;
    color: #666;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .dmxm-detail-container {
        padding: 20px 15px;
    }
    
    .dmxm-sec-header h2 {
        font-size: 22px;
    }

    .dmxm-info-item h4 {
        font-size: 16px;
    }

    .dmxm-section {
        margin-bottom: 40px;
    }
}




/* 中间内容容器 - 建议在其父级 div 设置 background-color: #f7f8f9; */
.rice-v4-inner-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 头部文字部分 */
.rice-v4-header {
    margin-bottom: 40px;
}

.rice-v4-main-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin: 0 0 10px 0;
}

.rice-v4-divider {
    width: 40px;
    height: 4px;
    background-color: #f1b333;
    margin: 0 auto 30px;
}

.rice-v4-sub-title {
    color: #2e59a7;
    font-size: 22px;
    margin-bottom: 15px;
}

.rice-v4-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* 白色底色的中间区域 */
.rice-v4-white-box {
    background-color: #ffffff; /* 确保中间是白底 */
    border: 1px solid #eef0f2;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 轻微阴影提升层级 */
    overflow: hidden;
}

/* 列表项 */
.rice-v4-item {
    display: flex;
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.rice-v4-item:last-child {
    border-bottom: none;
}

/* 图标 */
.rice-v4-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-right: 25px;
}

.rice-v4-bg-orange { background-color: #f1b333; }
.rice-v4-bg-blue { background-color: #2e59a7; }

/* 文字详情 */
.rice-v4-text h4 {
    margin: 0 0 10px 0;
    color: #2e59a7;
    font-size: 17px;
}

.rice-v4-text h4 span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 4px;
}

.rice-v4-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .rice-v4-inner-container { padding: 30px 15px; }
    .rice-v4-item { padding: 20px; }
    .rice-v4-icon { width: 45px; height: 45px; font-size: 22px; margin-right: 15px; }
}

@media (max-width: 480px) {
    .rice-v4-item { flex-direction: column; }
    .rice-v4-icon { margin-bottom: 15px; }
}

/* 容器设置 */
.dm-eval-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
}

/* 每一个评估项的容器 */
.dm-eval-item {
    margin-bottom: 40px; /* 每一项之间的间距 */
}

/* 标题样式：深蓝色 + 下方长边框 */
.dm-eval-title {
    color: #2e59a7; /* 原图深蓝色 */
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 12px;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #2e59a7; /* 贯穿长线 */
    display: block; /* 确保线条撑满宽度 */
}

/* 正文内容样式 */
.dm-eval-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    padding-left: 2px; /* 稍微错开一点，对齐文字 */
    margin: 0;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .dm-eval-wrapper {
        padding: 15px;
    }
    
    .dm-eval-title {
        font-size: 18px;
        padding-bottom: 8px;
    }

    .dm-eval-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .dm-eval-item {
        margin-bottom: 30px;
    }
}



/* 容器 */
.dm-school-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Microsoft YaHei", sans-serif;
    text-align: center;
}

/* 标题样式：包含背景英文文本 */
.dm-school-header {
    margin-bottom: 60px;
    position: relative;
}

.dm-school-main-title {
    font-size: 30px;
    color: #333;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* 背景英文文本 */
.dm-school-main-title::before {
    content: attr(data-bgtext); /* 从HTML中读取内容 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size:30px;
    color: #f0f0f0; /* 极浅灰色 */
    z-index: -1;
    font-weight: bold;
    letter-spacing: 2px;
    white-space: nowrap;
}

.dm-school-line {
    width: 35px;
    height: 3px;
    background-color: #f1b333;
    margin: 15px auto;
}

.dm-school-intro {
    font-size: 16px;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 网格布局 */
.dm-school-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

/* 单个卡片 */
.dm-school-card {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

/* 圆圈图标容器 */
.dm-school-icon-circle {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* 淡淡的圆圈投影 */
}

.dm-school-icon-circle img {
    width: 170px;
    height: auto;
}

.dm-school-card h4 {
    font-size: 18px;
    color: #2e59a7;
    margin-bottom: 12px;
}

.dm-school-item-line {
    width: 20px;
    height: 2px;
    background-color: #add8e6; /* 浅蓝色小线 */
    margin: 0 auto 15px;
}

.dm-school-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .dm-school-card {
        flex: 0 0 30%; /* 平板显示 3 列 */
    }
}

@media (max-width: 768px) {
    .dm-school-main-title::before {
        font-size: 24px;
    }
    .dm-school-card {
        flex: 0 0 45%; /* 小平板显示 2 列 */
    }
}

@media (max-width: 480px) {
    .dm-school-card {
        flex: 0 0 100%; /* 手机显示 1 列 */
    }
    .dm-school-icon-circle {
        width: 100px;
        height: 100px;
    }
}



    /* 容器基础样式 */
    .edu-container {
        font-family: "Microsoft YaHei", sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
    }

    /* Tab 按钮样式 */
    .edu-tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .edu-tab-btn {
        padding: 8px 35px;
        border-radius: 20px;
        border: 1px solid #FFC444;
        background: #fff;
        color: #FFC444;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s;
    }

    .edu-tab-btn.active {
        background: #FFC444;
        color: #fff;
    }

    /* 内容面板样式 */
    .edu-panel {
        display: none;
        flex-direction: column;
        gap: 30px;
    }

    .edu-panel.active {
        display: flex;
    }

    /* 卡片通用样式 */
    .edu-card {
        display: flex;
        align-items: center;
        border-radius: 15px;
        padding:10px 40px;
        min-height: 280px;
        position: relative;
        overflow: hidden;
    }

    /* 背景色区分 */
    .edu-bg-light { background-color: #FFF5F0; }
    .edu-bg-white { background-color: #FFFFFF; }

    .edu-content {
        flex: 1;
        z-index: 2;
		text-align:left
    }

    .edu-title {
        color: #A02C2C;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .edu-info-item {
        margin-bottom: 10px;
        line-height: 1.6;
        font-size: 16px;
    }

    .edu-label {
        font-weight: bold;
        white-space: nowrap;
    }

    /* 图片样式 */
    .edu-image-box {
        flex: 0 0 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .edu-image-box img {
        max-width: 100%;
        height: auto;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
        .edu-card {
            flex-direction: column;
            text-align: left;
            padding: 20px;
        }
        .edu-image-box {
            order: -1; /* 图片移动到上方 */
            flex: 0 0 auto;
            margin-bottom: 20px;
            width: 150px;
        }
        .edu-title {
            font-size: 20px;
        }
    }


    /* 使用 team- 前缀，防止样式冲突 */
    .team-section-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
        padding: 15px 0;
    }

    .team-member-item {
        flex: 1;
        min-width: 300px; /* 移动端自动换行的临界点 */
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .team-member-item img {
        width: 100%;
        height: auto;
        display: block;
        /* 如果图片本身带边距，可以按需调整 object-fit */
        object-fit: contain; 
    }

    /* 手机端适配 */
    @media (max-width: 640px) {
        .team-member-item {
            flex: 0 0 100%;
        }
        .team-section-row {
            gap: 15px;
        }
    }
	
	
	

    /* 容器：2列布局，响应式自动调整 */
    .expert-grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
        padding: 40px 20px;
        max-width: 1100px;
        margin: 0 auto;
        font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    .expert-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* 圆形头像 */
    .expert-avatar {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background-color: #f0f0f0;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .expert-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 姓名 */
    .expert-name {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }

    /* 装饰线 */
    .expert-line {
        width: 30px;
        height: 4px;
        background-color: #FFC444;
        margin-bottom: 15px;
    }

    /* 列表详情 */
    .expert-desc-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left; /* 保持描述文字左对齐 */
        max-width: 320px;
    }

    .expert-desc-item {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
        position: relative;
        padding-left: 15px;
    }

    .expert-desc-item::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #666;
    }

    /* 响应式断点：手机端单列显示 */
    @media (max-width: 768px) {
        .expert-grid-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .expert-avatar {
            width: 150px;
            height: 150px;
        }
    }
	
	
	

    .city-card-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 默认4列 */
        gap: 25px;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        font-family: "Microsoft YaHei", sans-serif;
    }

    .city-card-item {
        background: #fff;
        border-radius: 4px;
        padding: 30px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 卡片阴影 */
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .city-card-item:hover {
        transform: translateY(-5px);
    }

    .city-card-name {
        font-size: 15px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }

    .city-card-img-wrap {
        width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
		margin-top: 10px;
    }

    .city-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .city-card-info {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        text-align: left;
        width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* 限制描述文字行数 */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 特殊处理：最后一行如果不足4个，在PC端保持居中效果（可选） */
    @media (min-width: 1024px) {
        .city-card-grid {
            justify-content: center;
        }
        /* 如果希望第二行的三个居中，可以使用下面的逻辑，或者保持 grid 默认靠左 */
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
        .city-card-grid {
            grid-template-columns: repeat(2, 1fr); /* 平板2列 */
        }
    }

    @media (max-width: 640px) {
        .city-card-grid {
            grid-template-columns: 1fr; /* 手机1列 */
            gap: 20px;
        }
    }



    /* 容器基础样式 */
    .research-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    /* 卡片通用样式 */
    .research-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        display: flex;
        padding: 30px;
        margin-bottom: 30px;
        align-items: center;
        gap: 40px;
        transition: transform 0.3s ease;
    }

    .research-card:hover {
        transform: translateY(-5px);
    }

    /* 左侧图片区域 */
    .research-img-box {
        flex: 0 0 450px;
        border: 8px solid #E5E5E5; /* 模拟外边框 */
        position: relative;
        box-sizing: border-box;
    }

    /* 金色渐变边框效果 */
    .research-img-box::after {
        content: "";
        position: absolute;
        top: -10px; left: -10px; right: -10px; bottom: -10px;
        border: 2px solid #C5A059;
        pointer-events: none;
    }

    .research-img-box img {
        width: 100%;
        display: block;
        height: auto;
    }

    /* 右侧文字区域 */
    .research-info {
        flex: 1;
    }

    .research-title {
        font-size: 24px;
        font-weight: bold;
        color: #333;
		text-align:left;
        margin-bottom: 20px;
        position: relative;
    }

    .research-desc {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
        text-align: justify;
    }

    /* 响应式断点 */
    @media (max-width: 992px) {
        .research-card {
            flex-direction: column;
            padding: 20px;
            gap: 20px;
        }

        .research-img-box {
            flex: 0 0 auto;
            width: 100%;
            max-width: 500px;
        }

        .research-title {
            text-align: center;
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .research-desc {
            font-size: 14px;
        }
    }


	
    /* 网格容器 */
    .vod-grid-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
        max-width: 1200px;
        margin: 0 auto;
        font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    /* 单个卡片项 */
    .vod-card-item {
        display: flex;
        flex-direction: column;
    }

    /* 图片链接容器 */
    .vod-link-img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 6px;
        overflow: hidden;
        background-color: #f5f5f5;
        transition: transform 0.3s ease;
    }

    .vod-link-img:hover {
        transform: scale(1.02);
    }

    .vod-link-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 标题链接样式 */
    .vod-link-title {
        display: block;
        margin-top: 12px;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        line-height: 1.5;
        transition: color 0.3s;
        /* 限制单行并显示省略号 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vod-link-title:hover {
        color: #001582; /* 悬停时变为深蓝色 */
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
        .vod-grid-wrap {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .vod-grid-wrap {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        .vod-link-title {
            font-size: 14px;
            white-space: normal;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
    }



    /* 视频外层容器 */
    .video-resp-container {
        position: relative;
        width: 100%;             /* 宽度填满父级 div */
        height: 0;
        padding-bottom: 56.25%;  /* 关键点：16:9 的比例 (9 / 16 = 0.5625) */
        overflow: hidden;
        background: #000;        /* 加载前的背景色 */
    }

    /* 内部 iframe 强制铺满容器 */
    .video-resp-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        border: none;
    }


    /* 页面基础字体与容器 */
    .live-detail-container {
        font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
    }

    /* 1. 顶部海报区 */
    .live-detail-banner {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .live-detail-banner img {
        width: 100%;
        display: block;
        height: auto;
    }

    /* 2. 公用标题样式 */
    .live-detail-section-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
        padding-left: 10px;
        border-left: 4px solid #FFC444;
        line-height: 1;
    }

    /* 3. 讲师卡片网格布局 */
    .live-detail-lecturer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 默认两列 */
        gap: 20px;
        margin-bottom: 40px;
    }

    .live-detail-lecturer-card {
        display: flex;
        align-items: center;
        border: 1px solid #eeeeee;
        padding: 15px;
        border-radius: 4px;
        background: #fff;
    }

    .live-detail-lecturer-avatar {
        width: 100px;
        height: 130px;
        flex-shrink: 0;
        margin-right: 15px;
        overflow: hidden;
    }
    .live-detail-lecturer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .live-detail-lecturer-info {
        flex: 1;
    }

    .live-detail-lecturer-name {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .live-detail-lecturer-line {
        width: 20px;
        height: 3px;
        background: #FFC444;
        margin-bottom: 10px;
    }

    .live-detail-lecturer-desc {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
    }

    /* 4. 课程介绍区 */
    .live-detail-intro-content {
        font-size: 15px;
        color: #444;
        line-height: 1.8;
        padding: 10px;
    }

    /* 响应式断点 */
    @media (max-width: 768px) {
        .live-detail-lecturer-grid {
            grid-template-columns: 1fr; /* 移动端单列 */
        }
        .live-detail-lecturer-avatar {
            width: 80px;
            height: 104px;
        }
    }



    /* 容器基础样式 */
    .article-detail-wrap {
        font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.8;
    }

    /* 面包屑/分类 */
    .article-detail-cate {
        font-size: 14px;
        color: #999;
        margin-bottom: 15px;
    }
	
	.article-detail-cate a{
        font-size: 14px;
        color: #999;
		text-transform:none;
    }

    /* 标题与日期 */
    .article-detail-header h1 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #222;
    }
    .article-detail-meta {
        font-size: 14px;
        color: #bbb;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    /* 正文内容 */
    .article-detail-content {
        font-size: 16px;
        text-align: justify;
    }
    .article-detail-content p {
        margin-bottom: 20px;
    }
    .article-detail-content h3 {
        font-size: 18px;
        color: #A02C2C;
        margin: 30px 0 15px;
    }

    /* 上下篇导航 */
    .article-detail-nav {
        display: flex;
        justify-content: space-between;
        padding: 30px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-top: 50px;
        font-size: 14px;
    }
    .article-detail-nav a {
        color: #666;
        text-decoration: none;
        max-width: 45%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .article-detail-nav a:hover { color: #FFC444; }

    /* 相关文章推荐网格 */
    .article-detail-related {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    .article-detail-card {
        text-decoration: none;
        color: #333;
    }
    .article-detail-thumb {
        width: 100%;
        aspect-ratio: 1.5;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 10px;
        background: #fdf2f2;
        border: 1px solid #f9e6e6;
    }
    .article-detail-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .article-detail-card-title {
        font-size: 14px;
        text-align: center;
        display: block;
        margin-top: 8px;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
        .article-detail-header h1 { font-size: 22px; }
        .article-detail-related { grid-template-columns: repeat(2, 1fr); }
        .article-detail-nav { flex-direction: column; gap: 10px; }
        .article-detail-nav a { max-width: 100%; }
    }




    /* 网格容器 */
    .shop-item-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
        max-width: 1200px;
        margin: 0 auto;
        font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    /* 单个商品卡片 */
    .shop-item-card {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: #333;
        transition: transform 0.2s;
    }

    .shop-item-card:hover {
        transform: translateY(-3px);
    }

    /* 商品图片容器 */
    .shop-item-thumb {
        width: 100%;
        aspect-ratio: 1 / 1; /* 保持正方形 */
        border-radius: 4px;
        overflow: hidden;
        background-color: #f9f9f9;
        margin-bottom: 12px;
    }

    .shop-item-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 商品标题 */
    .shop-item-title {
        font-size: 15px;
        line-height: 1.4;
        height: 1.3em; /* 限制高度显示两行 */
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #333;
    }

    /* 价格区域 */
    .shop-item-price-row {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

    .shop-item-price-current {
        font-size: 20px;
        color: #FFB400; /* 还原设计图的亮橙色 */
        font-weight: bold;
    }

    .shop-item-price-current::before {
        content: "SGD";
        font-size: 14px;
        margin-right: 2px;
    }

    .shop-item-price-original {
        font-size: 14px;
        color: #bbb;
        text-decoration: line-through;
    }

    .shop-item-price-original::before {
        content: "SGD";
    }

    /* 响应式断点 */
    @media (max-width: 992px) {
        .shop-item-grid {
            grid-template-columns: repeat(2, 1fr); /* 平板和手机显示 2 列 */
            gap: 20px 15px;
        }
    }

    @media (max-width: 480px) {
        .shop-item-title {
            font-size: 13px;
        }
        .shop-item-price-current {
            font-size: 17px;
        }
    }




    /* 容器样式 */
    .expert-v2-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        background-color: #fff;
    }

    /* 顶部切换按钮区域 */
    .expert-v2-tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .expert-v2-tab-btn {
        padding: 10px 40px;
        border-radius: 25px;
        border: 1px solid #ddd;
        font-size: 14px;
        color: #666;
        cursor: pointer;
        background-color: #fff;
        transition: all 0.2s ease-in-out; /* 缩短过渡时间，反馈更灵敏 */
    }
	
	.expert-v2-tab-btn a{
        font-size: 14px;
		text-decoration:none;
        color: #666;
        cursor: pointer;
    }

    /* 鼠标悬停 (hover) 和 当前高亮 (active) 采用完全一致的样式 */
    .expert-v2-tab-btn:hover,
    .expert-v2-tab-btn.active {
        background-color: #FFC444; /* 亮黄色背景 */
        border-color: #FFC444;     /* 边框与背景同色 */
        color: #333;               /* 深色文字 */
    }

    /* 专家网格 */
    .expert-v2-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* 专家卡片 */
    .expert-v2-card {
        border: 1px solid #f0f0f0;
        background: #fff;
        display: flex;
        flex-direction: column;
    }

    .expert-v2-photo {
        width: 100%;
        aspect-ratio: 4 / 5;
        background-color: #f7f7f7;
        overflow: hidden;
    }

    .expert-v2-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .expert-v2-info {
        padding: 25px 20px;
    }

    .expert-v2-name {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .expert-v2-divider {
        width: 25px;
        height: 3px;
        background-color: #FFC444;
        margin-bottom: 15px;
    }

    .expert-v2-titles {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
    }

    .expert-v2-title-item {
        margin-bottom: 5px;
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
        .expert-v2-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .expert-v2-grid {
            grid-template-columns: 1fr;
        }
        .expert-v2-tab-btn {
            padding: 8px 20px;
            font-size: 13px;
        }
        .expert-v2-tabs {
            gap: 10px;
        }
    }
