body {
    overflow-x: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 2px solid #fff;
    padding: 12px;
    text-align: left;
    word-break: break-all
}
th {
    background-color: #f2f2f2;
}
tr:nth-child(odd) {
    background-color: #2aa7a530;
}

tr:nth-child(1) {
    background-color: #2aa7a5;
    font-weight: bold;
    color: #fff;
    padding: 10px 0 !important;
    height: 50px;
}

tr:hover {
    background-color: #2aa7a548;
}

tr:nth-child(1):hover {
    background-color: #2aa7a5;
    font-weight: bold;
    color: #fff;
    padding: 10px 0 !important;
    height: 50px;
}

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

.references-list p {
    counter-increment: ref-counter; /* 对每个li元素增加计数器 */
    margin-bottom: 15px;
    font-size: 1.1rem !important;
    padding: 12px 15px 12px 15px;
    background: rgba(76, 175, 80, 0.03);
    border-radius: 6px;
    position: relative;
    border-left: 3px solid #e8f5e9;
    transition: border-left-color 0.2s ease;
}

.references-list p:hover {
    border-left-color: #4caf50;
}

.references-list p::before {
    /* content: "[" counter(ref-counter) "]"; 使用计数器并添加点号后跟空格 */
    position: absolute;
    /* left: 15px; */
    top: 12px;
    color: #4caf50;
    font-weight: bold;
    font-size: 1rem;
}

/* 滚动条整体样式 */
::-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: 6rem;
    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(135deg, #f8fdf8 0%, #f1f8e9 100%);
    padding: 30px 25px;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    border-right: 3px solid #4caf50;
    box-shadow: 2px 0 15px rgba(76, 175, 80, 0.15);
}

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

/* 滚动条滑块的样式 */
.sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(76,175,80,0.9), rgba(76,175,80,0.6));
    border-radius: 8px;
    border: 2px solid #f1f8e9;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.08);
}

/* 滚动条轨道的样式 */
.sidebar::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f1f8e9, #e8f5e8);
    border-radius: 8px;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.05);
}

/* 滚动条滑块 hover 状态 */
.sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4caf50, #388e3c);
}

/* 滚动条按钮样式 */
.sidebar::-webkit-scrollbar-button {
    display: none; /* 隐藏滚动条按钮 */
    }
    
/* 滚动条角落样式 */
.sidebar::-webkit-scrollbar-corner {
    background: #f1f1f1; /* 滚动条角落的背景色 */
}



.sidebar-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 35px;
    text-align: center;
    color: #2e7d32;
    text-shadow: 0 2px 4px rgba(46, 125, 50, 0.1);
    padding-bottom: 15px;
}

.sidebar>a {
    text-decoration: none;
    width: 100%;
    display: block;
    margin-bottom: 8px;
    color: #2d4a2b;
    transition: all 0.3s ease;
}

.sidebar-item {
    width: 100%;
    padding: 6px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 4px;
}

/* 目录滚动高亮 */
.sidebar a.active .sidebar-item,
.sidebar a.active .sidebar-item-b,
.sidebar a.active .sidebar-item-c {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
    transform: translateX(4px);
}

.sidebar a.active .sidebar-item-text,
.sidebar a.active .sidebar-item-text-b,
.sidebar a.active .sidebar-item-text-c {
    color: #2e7d32 !important;
    font-weight: 600;
}

/* 侧边栏悬停效果 */
.sidebar-item:hover {
    background: rgba(76, 175, 80, 0.08);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.sidebar-item:hover .sidebar-item-text,
.sidebar-item:hover .sidebar-item-text-b,
.sidebar-item:hover .sidebar-item-text-c {
    color: #2e7d32;
}

/* 简化的固定布局 */
.page-content {
    display: flex;
    flex-direction: row;
    background: linear-gradient(135deg, #f8fdf8 0%, #f1f8e9 100%);
    width: 90vw;
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
}


.sidebar-item:hover>.sidebar-item-text {
    color: #4caf50;
    transition: color 0.2s ease;
}

.sidebar-item-text-active {
    color: #2e7d32;
}




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

.sidebar-item-text {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    display: block;
    padding: 12px 16px 12px 44px;
    transition: all 0.3s ease;
    color: #2d4a2b;
    border-radius: 6px;
    position: relative;
}

/* 一级导航图标 */
.sidebar-item-text::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('https://static.igem.wiki/teams/6002/common/icon-sidebar-new.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}


/* 二级 */

.sidebar-item-b {
    width: 90%;
    margin-left: 11%;
}


.sidebar-item-b:hover>.sidebar-item-text-b {
    color: #4caf50;
    transition: color 0.2s ease;
}




.sidebar-item-text-b {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 14px;
    color: #4a5a4a;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-left: 24px;
    position: relative;
}


/* 三级 */

.sidebar-item-c {
    width: 80%;
    margin-left: 20%;
}


.sidebar-item-c:hover>.sidebar-item-text-c {
    color: #388e3c;
    transition: color 0.2s ease;
}




.sidebar-item-text-c {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    padding: 8px 12px;
    color: #5a6a5a;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-left: 48px;
    position: relative;
}


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

.desc-content {
    width: 66.67%;
    flex: 1;
    margin-left: 0;
    padding: 50px 60px;
    border-radius: 0;
    color: #2d4a2b;
    background: linear-gradient(180deg, #ffffff 0%, #fafffe 100%);
    overflow-y: auto;
    overflow-x: hidden;
    border-left: 1px solid rgba(76, 175, 80, 0.1);
    line-height: 1.8;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* 正文区域装饰性背景 */
.desc-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.desc-content::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.desc-content > * {
    position: relative;
    z-index: 1;
}

/* 标题文本 */
.desc-content-title {
    /* margin: 30px 0; */
    width: 100%;
}

/* 原有的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.8rem !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: #ffffff !important;
    font-weight: 800;
    margin: 60px 0 35px 0;
    padding: 0 35px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25);
    letter-spacing: 1px;
}

.desc-content-title-text::before {
    content: '●';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.desc-content-title-text-b {
    font-size: 2.2rem !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: #2e7d32 !important;
    font-weight: 700;
    margin: 40px 0 25px 0;
    padding: 22px 28px;
    text-shadow: 0 1px 3px rgba(46, 125, 50, 0.1);
    position: relative;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.15);
    letter-spacing: 0.5px;
}

.desc-content-title-text-b::before {
    content: '▸';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #4caf50;
}

/* 注意：#nav-content 下面的a标签，href值不包含a的节点，设置没有下划线 */
/* 注意：#nav-content 下面的a标签，href值不包含 “#a1+位阿拉伯数字”的节点，设置没有下划线 */
#nav-content a:not([href^="#a"]) {
    text-decoration: none;
}


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

.descrption-article-text>p {
    font-size: 1.3rem;
    line-height: 1.8 !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    overflow: inherit;
    word-wrap: break-word;
    margin: 0 0 20px 0;
    text-align: justify;
    color: #2d4a2b;
    margin-bottom: 0 !important;
}

/* Overview 区域的第一个文本段落样式 */
.overview-text-box,
.desc-content > .descrption-article-text:first-of-type {
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
    /* border-left: 5px solid #4caf50; */
    border-radius: 12px;
    padding: 30px 35px;
    margin: 25px 0 35px 0;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    position: relative;
    border-bottom: none;
}

.overview-text-box::before,
.desc-content > .descrption-article-text:first-of-type::before {
    /* content: '📋'; */
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.overview-text-box > p,
.desc-content > .descrption-article-text:first-of-type > p {
    color: #1b5e20;
    font-size: 1.5rem;
    line-height: 1.5 !important;
    text-indent: 2em;
    font-family: 'Times New Roman', Times, serif;
}

/* 强调文本 */
impt {
    color: #2d89e5;
}

/* 列表 */
.desc-content ul,
ol {
    border-bottom: 1.7rem solid transparent;
    background: rgba(76, 175, 80, 0.03);
    padding: 20px 30px 20px 50px;
    border-radius: 8px;
    border-left: 4px solid #81c784;
}

.desc-content ul,
ol li {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    overflow: inherit;
    word-wrap: break-word;
    margin-bottom: 12px;
    color: #2d4a2b;
    position: relative;
}

.desc-content ul li::marker {
    color: #4caf50;
    font-weight: bold;
}

.desc-content ol li::marker {
    color: #4caf50;
    font-weight: bold;
}


/* 图片 */
.desc-content img {
    margin: 20px auto;
    width: 80%;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    /* border: 3px solid #f1f8e9; */
}

.desc-content-img-desc {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #5a6a5a;
    margin-top: -10px;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 30px;
   
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}


/* 超链接 */
.desc-content a {
    color: #2d89e5;
    text-decoration: none;
}

.desc-content a:hover {
    color: #0a58ca;
}

.desc-content-title-text-c {
    font-size: 1.7rem !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: #388e3c !important;
    font-weight: 600;
    margin: 30px 0 20px 0;
    padding: 16px 22px;
    text-shadow: 0 1px 2px rgba(56, 142, 60, 0.1);
    position: relative;
    background: rgba(76, 175, 80, 0.12);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.1);
    letter-spacing: 0.3px;
}

.desc-content-title-text-c::before {
    content: '▶';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #4caf50;
    font-size: 1rem;
}

/* 四级标题样式 */
.desc-content-title-text-d {
    font-size: 1.4rem !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: #4caf50 !important;
    font-weight: 600;
    margin: 20px 0 15px 0;
    padding: 12px 18px;
    background: rgba(76, 175, 80, 0.08);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 1px 8px rgba(76, 175, 80, 0.08);
}

.desc-content-title-text-d::before {
    content: '■';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #66bb6a;
    font-size: 0.7rem;
}


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

strong {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    overflow: inherit;
    word-wrap: break-word;
    margin: 0;
    color: #2e7d32;
    font-weight: 600;
}

.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: 1rem;
    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;
}


/* 统一配色方案：主色 #88a956（绿色）、辅助色 #2e7d32（深绿） */

/* 超链接样式 - 植物主题绿色 */
.desc-content a {
    color: #4caf50 !important;
    text-decoration: none !important;
    position: relative;
    padding: 2px 4px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
    transition: all 0.2s ease;
}

.desc-content a:hover {
    border-bottom-color: #4caf50;
}

/* 增强型链接基础样式 */
.enhanced-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* 链接图标通用样式 */
.link-icon {
    display: inline-block;
    font-size: 0.85em;
    margin-left: 2px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.enhanced-link:hover .link-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* 外部链接样式 */
.external-link {
    color: #2196f3 !important;
    border-bottom-color: rgba(33, 150, 243, 0.3);
    background: linear-gradient(to right, rgba(33, 150, 243, 0.05), transparent);
    padding: 3px 6px;
    border-radius: 4px;
}

.external-link:hover {
    border-bottom-color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
}

.external-icon {
    color: #2196f3;
    font-weight: bold;
}

/* 邮件链接样式 */
.email-link {
    color: #ff9800 !important;
    border-bottom-color: rgba(255, 152, 0, 0.3);
    background: linear-gradient(to right, rgba(255, 152, 0, 0.05), transparent);
    padding: 3px 6px;
    border-radius: 4px;
}

.email-link:hover {
    border-bottom-color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.email-icon {
    color: #ff9800;
}

/* 电话链接样式 */
.tel-link {
    color: #9c27b0 !important;
    border-bottom-color: rgba(156, 39, 176, 0.3);
    background: linear-gradient(to right, rgba(156, 39, 176, 0.05), transparent);
    padding: 3px 6px;
    border-radius: 4px;
}

.tel-link:hover {
    border-bottom-color: #9c27b0;
    background: rgba(156, 39, 176, 0.1);
}

.tel-icon {
    color: #9c27b0;
}

/* 文件链接样式 */
.file-link {
    color: #f44336 !important;
    border-bottom-color: rgba(244, 67, 54, 0.3);
    background: linear-gradient(to right, rgba(244, 67, 54, 0.05), transparent);
    padding: 3px 6px;
    border-radius: 4px;
}

.file-link:hover {
    border-bottom-color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.file-icon {
    color: #f44336;
}

/* 锚点链接样式 */
.anchor-link {
    color: #607d8b !important;
    border-bottom-color: rgba(96, 125, 139, 0.3);
    background: linear-gradient(to right, rgba(96, 125, 139, 0.05), transparent);
    padding: 3px 6px;
    border-radius: 4px;
}

.anchor-link:hover {
    border-bottom-color: #607d8b;
    background: rgba(96, 125, 139, 0.1);
}

/* 内部链接样式 */
.internal-link {
    color: #4caf50 !important;
    border-bottom-color: rgba(76, 175, 80, 0.3);
}

.internal-link:hover {
    border-bottom-color: #4caf50;
}

/* 自动生成的链接样式 */
.auto-generated-link {
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    background: rgba(33, 150, 243, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    border-bottom: 1px dashed rgba(33, 150, 243, 0.5);
    word-break: break-all;
}

.auto-generated-link:hover {
    background: rgba(33, 150, 243, 0.15);
    border-bottom-style: solid;
}

/* 加粗文本样式 - 植物主题绿色 */
.desc-content strong {
    position: relative;
    background: rgba(76, 175, 80, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
    cursor: default;
}

/* impt标签样式 - 植物主题绿色 */
impt {
    position: relative;
    background: rgba(76, 175, 80, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    cursor: default;
    font-weight: 600;
    color: #2e7d32;
}

/* 图片点击放大功能（取消悬停动效，仅保留可点击） */
.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); }
}

/* 内容区域动画 */
.content-section {
    overflow: hidden;
}

.content-section.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 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.8rem !important;
    }
    .desc-content-title-text-b {
        font-size: 1.4rem !important;
    }
    .desc-content-title-text-c {
        font-size: 1.3rem !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.2rem;
    }
    
    .sidebar-item-text {
        font-size: 20px;
    }
    
    .sidebar-item-text-b {
        font-size: 16px;
    }
}