body {
    overflow-x: hidden;
}

table {
    width: 100%;
    border-collapse: separate; /* 使用 separate 以支持 border-spacing */
    border-spacing: 0;
    margin: 24px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26, 46, 59, 0.06);
    background: #ffffff;
}
th, td {
    border: none;
    padding: 16px 20px;
    text-align: left;
    word-break: break-all;
    position: relative;
    border-bottom: 1px solid #EAECEE; /* 水平分隔线 */
}
th {
    background: #F7F9FA; /* 浅灰表头 */
    color: #1A2E3B; /* 深邃蓝黑 */
    font-weight: 600;
    font-size: 1.3rem;
    text-shadow: none;
}
tbody tr:nth-child(even) {
    background: #FFFFFF;
}
tbody tr:nth-child(odd) {
    background: #FDFEFE;
}

tbody tr:nth-child(1) {
    background: #F7F9FA;
    font-weight: bold;
    color: #1A2E3B;
}

tbody tr:hover {
    background: #F4F6F7; /* 悬停效果 */
    transform: none;
    box-shadow: none;
}

tbody tr:nth-child(1):hover {
    background: #F4F6F7;
    font-weight: bold;
    color: #1A2E3B;
    transform: none;
    box-shadow: none;
}

body {
    counter-reset: ref-counter; /* 初始化计数器 */
}

.references-list p {
    counter-increment: ref-counter; /* 对每个li元素增加计数器 */
    margin-bottom: 10px;
    font-size: 0.8rem !important;
}

.references-list p::before {
    content: "[" counter(ref-counter) "]"; /* 使用计数器并添加点号后跟空格 */
   
}

/* 滚动条整体样式 */
::-webkit-scrollbar {
    width: 12px; /* 垂直滚动条的宽度 */
    height: 12px; /* 水平滚动条的高度 */
  }
  
  /* 滚动条轨道样式 */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* 滚动条轨道的背景色 */
    border-radius: 6px; /* 滚动条轨道的圆角 */
  }
  
  /* 滚动条滑块样式 */
  ::-webkit-scrollbar-thumb {
    background: #888; /* 滚动条滑块的背景色 */
    border-radius: 6px; /* 滚动条滑块的圆角 */
  }
  
  /* 滚动条滑块 hover 状态 */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; /* 滚动条滑块 hover 状态下的背景色 */
  }
  
  /* 滚动条按钮样式 */
  ::-webkit-scrollbar-button {
    display: none; /* 隐藏滚动条按钮 */
  }
  
  /* 滚动条角落样式 */
  ::-webkit-scrollbar-corner {
    background: #f1f1f1; /* 滚动条角落的背景色 */
  }

.left-aligned {
    margin-left: auto;
}

.bg-dark {
    background-color: #7baf9c !important;
}

.bg-hero {
    background-color: #ffeedd;
    height: 84vh;
    margin-top: -80px;
}

/* CALLOUT */
.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-left-width: .25rem;
    border-radius: .25rem
}

.bd-callout h4 {
    margin-bottom: .25rem
}

.bd-callout p:last-child {
    margin-bottom: 0
}

.bd-callout code {
    border-radius: .25rem
}

.bd-callout+.bd-callout {
    margin-top: -.25rem
}

.bd-callout-info {
    border-left-color: #5bc0de
}

.bd-callout-warning {
    border-left-color: #f0ad4e
}

.bd-callout-danger {
    border-left-color: #d9534f
}





/* FLEX 布局 */
.flex-row {
    display: flex;
    flex-direction: row;
}

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

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

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



/* 导航栏相关 */


/* 封图相关 */
header {
    width: 100vw;
    background-color: transparent;
    /* margin-top: -80px; */
    /* min-height: 50vh; */
}

.header-box {
    width: 100%;
    /* position: relative; */
}

.header-bg-wave {
    /* position: relative; */
    width: 100vw;
    /* top: 0; */
    height: auto;
}

.header-cover {
    position: absolute;
    width: 100vw;
    top: 0;
    height: 100%;
}

.header-cover-img {
    position: absolute;
    z-index: 2;
    height: 70%;
    width: auto;
    top: 10%;
}


.header-cover-title {
    font-size: 5.8rem;
    font-family: fantasy;
    color: #fff;
    position: absolute;
    top: 30%;
    z-index: 3;
}


/* 文案描述相关 */

.page-content-box {
    width: 80vw;
}

/* 文案描述-目录相关 - 像素艺术医疗主题 */
.sidebar {
    width: 33.33%;
    min-width: 300px;
    max-width: 450px;
    overflow-x: hidden;
    background: linear-gradient(180deg, rgba(240, 247, 255, 0.6) 0%, rgba(248, 245, 255, 0.4) 100%);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    border-right: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.05);
    border-radius: 0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* 滚动条 */
/* 初始状态下的滚动条样式 */
/* 现代化滚动条：细、圆角、品牌色 */
.sidebar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* 滚动条滑块的样式 */
.sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

/* 滚动条轨道的样式 */
.sidebar::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
}

/* 滚动条滑块 hover 状态 */
.sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

/* 滚动条按钮样式 */
.sidebar::-webkit-scrollbar-button {
    display: none; /* 隐藏滚动条按钮 */
    }
    
/* 滚动条角落样式 - 像素艺术主题 */
.sidebar::-webkit-scrollbar-corner {
    background: #e8e8e8; /* 浅灰色背景 */
    border: 1px solid #2c3e50;
}



.sidebar-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 35px;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 15px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    letter-spacing: 0.5px;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 2px;
}

.sidebar>a {
    text-decoration: none;
    width: 100%;
    display: block;
    margin-bottom: 6px;
    color: #2d4a2b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-item {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid transparent;
}

.sidebar-item::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-item:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* 目录滚动高亮 */
.sidebar a.active .sidebar-item,
.sidebar a.active .sidebar-item-b,
.sidebar a.active .sidebar-item-c {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-left: 4px solid #8b5cf6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
    transform: translateX(4px);
    position: relative;
}

.sidebar a.active .sidebar-item::before,
.sidebar a.active .sidebar-item-b::before,
.sidebar a.active .sidebar-item-c::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 10px 0 0 10px;
}

.sidebar a.active .sidebar-item-text,
.sidebar a.active .sidebar-item-text-b,
.sidebar a.active .sidebar-item-text-c {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-content a {
    text-decoration: none !important;
}

/* 侧边栏悬停效果 */
.sidebar-item:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12) 0%, rgba(34, 211, 238, 0.12) 100%);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
    border-left: 3px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
}

.sidebar-item:hover .sidebar-item-text {
    color: #6366f1;
    font-weight: 600;
}

.sidebar-item-b:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    transform: translateX(5px);
    box-shadow: 0 3px 12px rgba(139, 92, 246, 0.15);
    border-left: 3px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
}

.sidebar-item-b:hover .sidebar-item-text-b {
    color: #7c3aed;
    font-weight: 600;
}

.sidebar-item-c:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(34, 211, 238, 0.08) 100%);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.12);
    border-left: 2px solid rgba(139, 92, 246, 0.25);
    border-radius: 6px;
}

.sidebar-item-c:hover .sidebar-item-text-c {
    color: #8b5cf6;
    font-weight: 600;
}

/* 简化的固定布局 - 像素艺术医疗主题 */
.page-content {
    display: flex;
    flex-direction: row;
    background: #F7F9FA; /* 优雅的浅灰背景 */
    width: 80vw;
    position: relative;
    min-height: 100vh;
    border: none; /* 移除边框 */
    box-shadow: 0 8px 32px rgba(26, 46, 59, 0.08); /* 柔和的阴影 */
    margin: 0 auto;
    border-radius: 12px; /* 圆角设计 */
}


.sidebar-item-text-active {
    color: #8b5cf6;
}

.sidebar-item-circle {
    border-radius: 50%;
    margin: 0 8px;
    transition: .2s;
    margin-right: 16px;
}

.sidebar-item-text {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 500;
    font-size: 1.0rem;
    line-height: 1.5;
    display: block;
    padding: 12px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    border-radius: 8px;
    position: relative;
    text-transform: none;
    letter-spacing: 0px;
    border: 2px solid transparent;
    text-decoration: none;
}

/* 二级 */

.sidebar-item-b {
    width: 90%;
    margin-left: 11%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-item-b::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.25);
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-item-b:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.4);
}

.sidebar-item-text-b {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
    padding: 10px 14px;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin-left: 24px;
    position: relative;
    text-transform: none;
    letter-spacing: 0px;
    border: 2px solid transparent;
    text-decoration: none;
}


/* 三级 */

.sidebar-item-c {
    width: 80%;
    margin-left: 20%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-item-c::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-item-c:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    box-shadow: 0 0 4px rgba(139, 92, 246, 0.3);
}

.sidebar-item-text-c {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 8px 12px;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    margin-left: 48px;
    position: relative;
    text-transform: none;
    letter-spacing: 0px;
    border: 2px solid transparent;
    text-decoration: none;
}


/* 文案描述-正文相关 */

.desc-content {
    width: 66.67%;
    flex: 1;
    margin-left: 0;
    padding: 40px 50px;
    border-radius: 0;
    color: #000000; /* 纯黑色文字 */
    background: #ffffff; /* 纯白背景 */
    overflow-y: auto;
    border-left: 1px solid #e0e0e0; /* 极细灰色边框 */
    line-height: 1.7;
    font-family: 'Times New Roman', serif;
    box-shadow: none; /* 移除阴影 */
    position: relative;
}

/* 标题文本 - 一级标题容器样式 */
.desc-content-title {
    width: 100%;
    position: relative;
    background: #ffffff; /* 纯白背景 */
    border: none; /* 移除边框 */
    padding: 20px 0 12px 0;
    box-shadow: none; /* 移除阴影 */
    border-radius: 0;
}

/* 原有的title-circle样式已注释：
.desc-content-title-circle {
    height: 72px;
    width: 72px;
    border-radius: 50%;
    background-color: #224b8f;
    box-shadow: 0px 0px 5px #122a52, 0px 0px 10px #0a1a35;
}
*/

.desc-content-title-text {
    font-size: 2.2rem !important;
    font-family: 'Times New Roman', serif;
    color: #000000 !important; /* 纯黑色文字 */
    font-weight: 700;
    margin: 1.2rem 0 0.6rem 0;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid #000000; /* 简洁的黑色下划线 */
    text-shadow: none;
    position: relative;
    text-transform: none;
    letter-spacing: 0.5px;
}

.desc-content-title-b {
    margin: 16px 0;
    width: 100%;
    position: relative;
}

/* .desc-content-title-circle-b 样式已移除 */

.desc-content-title-text-b {
    font-size: 1.5rem !important;
    font-family: 'Times New Roman', serif;
    color: #000000 !important; /* 纯黑色文字 */
    font-weight: 600;
    margin: 1.2rem 0 0.5rem 0;
    padding: 0.5rem 0 0.35rem 0;
    border-bottom: 1px solid #333333; /* 细黑下划线 */
    text-shadow: none;
    position: relative;
    text-transform: none;
    letter-spacing: 0;
    background: none; /* 移除背景渐变 */
}

/* 普通文本 */
.descrption-article-text {
    border-bottom: 1.7rem solid transparent;
}

.descrption-article-text>p {
    font-size: 1.3rem;
    line-height: 1.75 !important;
    font-family: 'Times New Roman', serif;
    overflow: inherit;
    word-wrap: break-word;
    text-align: justify;
    color: #000000; /* 纯黑色文字 */
    text-shadow: none;
    margin-bottom: 12px !important;
    letter-spacing: 0.3px;
}

/* 强调文本 */
impt {
    color: #000000; /* 纯黑色文字 */
    background: #f0f0f0; /* 浅灰背景 */
    padding: 2px 4px;
    border: none;
    border-radius: 0;
    text-shadow: none;
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    box-shadow: none;
    position: relative;
}

/* 列表 */
.desc-content ul,
ol {
    border-bottom: 1.2rem solid transparent;
    padding-left: 20px;
}

.desc-content ul,
ol li {
    font-size: 1.3rem !important;
    line-height: 1.75 !important;
    font-family: 'Times New Roman', serif;
    overflow: inherit;
    word-wrap: break-word;
    margin-bottom: 6px;
    color: #000000; /* 纯黑色文字 */
    text-shadow: none;
    position: relative;
    padding-left: 0;
    transition: none;
}

.desc-content ul li:hover,
.desc-content ol li:hover {
    color: #000000; /* 保持黑色 */
    transform: none;
}

dl, ol, ul {
    margin-bottom: 0 !important;
    border: 0;
}


/* 图片 */
.desc-content img {
    margin: 20px auto;
    width: 80%;
}

.desc-content-img-desc {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #0000007d;
    margin-top: -10px;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 20px;
}


/* 超链接 - 已移至后面统一定义 */

.desc-content-title-text-c {
    font-size: 1.4rem !important; /* 使用rem单位，减少三级标题 */
    font-family: 'Times New Roman', serif; /* Times New Roman字体 */
    color: #2c3e50 !important; /* 深灰色文字 */
    font-weight: 600;
    margin: 1.0rem 0 0.4rem 0;
    padding: 0.4rem 0 0.3rem 0;
    border-bottom: 2px solid #4a90e2; /* 蓝色下划线 */
    text-shadow: none; /* 移除像素化阴影效果 */
    position: relative;
    text-transform: none; /* 取消大写字母 */
    letter-spacing: 0px; /* 取消字母间距 */
}

/* 四级标题样式 */
.desc-content-title-text-d {
    font-size: 1.2rem !important; /* 使用rem单位，减少四级标题 */
    font-family: 'Times New Roman', serif; /* Times New Roman字体 */
    color: #2c3e50 !important; /* 深灰色文字 */
    font-weight: 500;
    margin: 0.8rem 0 0.35rem 0;
    padding: 0.35rem 0 0.25rem 15px;
    border-left: 4px solid #4a90e2; /* 蓝色左边框 */
    background: rgba(74, 144, 226, 0.05);
    border-radius: 0; /* 移除圆角，保持像素化效果 */
    position: relative;
    text-transform: none; /* 取消大写字母 */
    letter-spacing: 0px; /* 取消字母间距 */
    text-shadow: none; /* 移除像素化阴影效果 */
}


/* TEAM */
.team-content {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    
}

strong {
    font-size: 1.4rem !important;
    line-height: 1.8 !important;
    font-family: 'Times New Roman', serif;
    overflow: inherit;
    word-wrap: break-word;
    margin: 0;
    color: #1A2E3B; /* 深邃蓝黑 */
    text-shadow: none;
    background: #EBF5FB; /* 非常浅的蓝色背景 */
    font-weight: 600; /* 加粗 */
    padding: 3px 6px;
    border-radius: 4px;
}

.team-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    height: 300px;
    width: 100%;
}

.team-row-item {
    width: 46%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.team-item-img {
    width: auto;
    height: 100%;
}

.team-item-text {
    margin-left: 20px;
    /* width: calc(46% - 240px); */
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    overflow-y: auto;
}

.team-item-text::-webkit-scrollbar {
    width: 0px;
}
.footer {
    width: calc(100%+5vw); /* 根据需要调整宽度 */
    margin-left: -20px; /* 抵消左右的padding */
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 20px auto;
    position: relative;
    top: 0;
    left: 0;
}

.logo-wrapper {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    justify-content: center; /* 居中排列 */
    align-items: center; /* 如果需要的话 */
    overflow: auto; /* 允许滚动 */
    width: 100%; /* 根据需要调整 */
}

.logo-wrapper img {
    width: 75px; /* 根据实际大小调整 */
    height: auto;
    margin: 5px; /* 设置间距 */
    scroll-snap-align: start;
}

#nav-content > a {
    text-decoration: none !important;
}


/* 统一配色方案：主色#2aa7a5（青色）、辅助色#666（灰色） */

/* 标题层次优化 - 植物主题绿色系 */
.desc-content-title-text,
.desc-content-title-text-b,
.desc-content-title-text-c {
    color: #1A2E3B !important; /* 深邃蓝黑 */
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
.desc-content-title-text-b {
    border-bottom: 1px solid #D5D8DC; /* 柔和分隔线 */
}
.desc-content-title-text-c {
    border-bottom: 1px solid #EAECEE; /* 更柔和分隔线 */
}

.desc-content-title-text:hover {
    transform: none; /* 移除悬停效果 */
}

.desc-content-title-text::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #fff;
    border-radius: 2px;
    transition: height 0.3s ease;
}

.desc-content-title-text:hover::before {
    height: 80%;
}


.desc-content-title-text-b {
    font-size: 2.0rem !important;
    font-weight: 500 !important;
    color: #000 !important;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
}

.desc-content-title-text-b:hover {
    transform: none; /* 移除悬停效果 */
}

.desc-content-title-text-b::before {
    content: '▶';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.desc-content-title-text-b:hover::before {
    opacity: 1;
    left: -22px;
}


.desc-content-title-text-c {
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.desc-content-title-text-c:hover {
    color: #2c3e50 !important; /* 保持原有颜色 */
    transform: none; /* 移除悬停效果 */
}

.desc-content-title-text-c::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.desc-content-title-text-c:hover::after {
    width: 0; /* 移除悬停效果 */
}

/* 超链接动效 - 植物主题绿色 */
.desc-content a {
    color: #0066cc !important;
    text-decoration: none !important;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 1.4rem;
    cursor: pointer;
    font-weight: 600;
}

.desc-content a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #004499);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desc-content a:hover {
    color: #004499 !important;
    transform: translateY(-3px) scale(1.02);
    background-color: rgba(0, 102, 204, 0.08);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.desc-content a:hover::before {
    width: 100%;
}

.desc-content a:active {
    transform: translateY(-1px) scale(1.0);
    transition: all 0.1s ease;
}

.desc-content strong {
    font-weight: 700;
    color: #1e3a8a;
    background: linear-gradient(transparent 65%, rgba(59, 130, 246, 0.2) 65%);
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .desc-content strong:hover {
    background-color: linear-gradient(transparent 65%, rgba(59, 130, 246, 0.35) 65%);
    transform: translateY(-1px);
  }

/* iframe 和 video 居中样式 */
.desc-content iframe,
.desc-content video {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.desc-content iframe {
    width: 100%;
    max-width: 800px;
    min-height: 450px;
}

.desc-content video {
    max-width: 900px;
}

/* iframe 和 video 的包裹容器（如果有的话） */
.desc-content .video-wrapper,
.desc-content .iframe-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

impt {
    font-weight: 700;
    color: #1e3a8a;
    background: linear-gradient(transparent 65%, rgba(59, 130, 246, 0.2) 65%);
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

impt:hover {
    background: linear-gradient(transparent 65%, rgba(59, 130, 246, 0.35) 65%);
    transform: translateY(-1px);
}



impt:hover::after {
    opacity: 1;
    right: -25px;
}

/* 图片点击放大功能（取消悬停动效，仅保留可点击） */
.desc-content img {
    cursor: pointer;
}

/* 图片放大模态框 */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.image-modal-close:hover {
    color: #2aa7a5;
}

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

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.5); }
    to { transform: translate(-50%, -50%) scale(1); }
}

/* 引用框增强动效 */
blockquote {
    transition: all 0.3s ease;
}

blockquote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* 数据卡片悬停效果 */
[style*="background: linear-gradient"] {
    transition: all 0.3s ease;
}

:not(footer) [style*="background: linear-gradient"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* 内容区域动画 */
.content-section {
    transition: all 0.3s ease;
    overflow: hidden;
}

.content-section.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

/* 添加页面加载动画 */
.desc-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 滚动进入动画 */
.desc-content-title, .desc-content-title-b, .desc-content-title-c {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 响应式优化 */
@media (max-width: 1024px) {
    .page-content {
        flex-direction: column;
        padding: 80px 0;
    }
    
    .sidebar {
        width: 100%;
        max-width: none;
        position: relative;
        height: auto;
        padding: 20px 6vw;
        border-bottom: 2px solid rgba(42, 167, 165, 0.1);
    }
    
    .desc-content {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        padding: 30px 6vw;
    }
}

@media (max-width: 768px) {
    .desc-content-title-text {
        font-size: 1.6rem !important;
    }
    .desc-content-title-text-b {
        font-size: 1.4rem !important;
    }
    .desc-content-title-text-c {
        font-size: 0.9rem !important;
    }
    
    .image-modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .sidebar {
        padding: 15px 4vw;
    }
    
    .desc-content {
        padding: 20px 4vw;
    }
    
    .descrption-article-text > p {
        font-size: 1.0rem;
    }
    
    .sidebar-item-text {
        font-size: 20px;
    }
    
    .sidebar-item-text-b {
        font-size: 16px;
    }
}