/* Enhanced Base styles */
:root {
    --primary-color: #37883f;
    --secondary-color: #45a049;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #37883f;
    --text-color: #333;
    --light-text: #fff;
}

body {
    font-family: 'Open Sans', inherit, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    background-color: #fff;
} 
@keyframes fadeInUp50 {
    from {
        visibility: hidden;
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        visibility: visible;
        opacity: 1;
        transform: translateX(0%);
    }
}

.fadeInUp50 {
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

@keyframes fadeInUp502 {
    from {
        visibility: hidden;
        opacity: 0;
        transform: translateX(-150%);
    }

    to {
        visibility: visible;
        opacity: 1;
        transform: translateX(0%);
    }
}

.fadeInUp502 {
    animation-duration: 2s;
    animation-fill-mode: both;
}

.dd.animated.fadeInRight50 img {
    transition: all .8s;
}

.indexCont1 .cTab .dd {
    display: flex;
    align-items: center;
    height: 272px;
}

.banner .swiper-slide .link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.le .list a:first-child {
    display: none;
}

.indexCont4 .d1 .til { 
    background: none;
}
/* Enhanced Hero Section */

.cta-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Enhanced Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

/* Enhanced Research Grid */
/* .research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
} */

.research-item {
    background: var(--light-bg);
    /* padding: 2rem; */
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.research-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.research-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.research-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-member {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.member-description {
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.5;
}

.member-title {
  font-size: 16px;
  margin: 10px 0;
}  
  .social-links {
    display: flex;
    /* justify-content: space-between; */
    /* gap: 1rem;
    margin-top: 1rem; */
}
.social-links i {
    margin-right: 10px !important;
}
.social-links i:hover {
    color: var(--secondary-color);
}

.social-icon {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
}

.wechat-container {
    position: relative;
    display: inline-block;
}

.qr-code {
    display: none;
    position: absolute;
    top: 90%;  /* Position under the icon */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;  /* Smaller size */
    height: 100px;  /* Smaller size */
    padding: 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 10px;  /* Add some space between icon and QR code */
}

.wechat-container:hover .qr-code {
    display: block;
}

/* Contact Section */
#contact {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 3rem;
    margin-top: 4rem;
}

#contact p {
    text-align: center;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 3rem 1rem;
    }
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #DB0058; /* 玫红色 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #DB0058; /* 玫红色 on hover */
}

/* 在你的 styles.css 文件中添加 */
a {
    transition: color 0.3s ease, text-decoration 0s ease; /* 平滑颜色和下划线的变化 */
  }

  a:hover {
    color: #4CAF50; /* 鼠标悬停时的颜色 */
    text-decoration: none; /* 确保悬停时没有下划线 */
  }

  a:active {
    color: #45a049; /* 点击时的颜色 */
  }

/* 在您的 styles.css 文件中或 <style> 标签内添加/更新以下样式 */

/* 重置链接的默认样式 */
a {
    color: #45a049; /* 设置链接颜色为绿色 */
    text-decoration: none; /* 移除下划线 */
    transition: color 0.3s ease; /* 平滑颜色变化，如果需要 */
}

/* 悬停状态 */
a:hover {
    color: #DB0058; /* 悬停时颜色保持三角梅玫红色 */
    text-decoration: none; /* 确保悬停时没有下划线 */
}
/* 在您的 styles.css 文件中或 <style> 标签内添加/更新以下样式 */

section {
    margin-bottom: 20px; /* 减少外边距 */
    padding: 20px; /* 减少内边距 */
    padding-bottom: 0px;
}

/* 如果需要，也可以为特定的 section 元素设置样式 */
 #about, #research, #Support_Our_Research {
    margin-bottom: 20px; /* 减少外边距 */
    padding: 20px; /* 减少内边距 */
}

/* 隐藏子菜单 */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #37883f;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* 子菜单链接样式 */
.dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* 显示子菜单 */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn i {
    margin-left: 5px; /* 与文本间距 */
}

@media (max-width: 768px) {
    .dropbtn::after {
        border-width: 6px; /* 在小屏幕上使用较小的箭头 */
    }
}

/* 添加的CSS样式 */
.video-container {
    text-align: center; /* 使视频容器居中 */
    margin: auto; /* 自动边距 */
    padding: 20px; /* 内边距 */
    max-width: 560px; /* 最大宽度 */
}
.video-container iframe {
    display: inline-block; /* 使iframe内联块级元素，以便居中显示 */
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 创建三列的网格布局 */
    gap: 10px; /* 图片之间的间隔 */
    max-width: 1200px; /* 最大宽度 */
    margin: auto; /* 自动边距 */
    padding: 20px; /* 内边距 */
}

.photo-item {
    width: 100%; /* 图片宽度为网格列宽 */
    height: auto; /* 高度自适应 */
    object-fit: cover; /* 保持图片比例 */
}

.photo-item:hover {
    transform: scale(1.05); /* 鼠标悬停时放大 */
}

/* 新增的CSS样式 */
.paper-gallery {
    position: relative; 
    width: 100%; /* 容器宽度为100% */
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin: 0 auto;
  }
  .paper-gallery a{ 
    width: 30%;
    height: 100%;
    box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 960px) {
    .paper-gallery {
        flex-direction: column;
    }
    .paper-gallery a {
      width: 100%;
      margin-bottom: 30px;
    }
  }

  .paper-gallery img {
    width: 100%; /* 图片宽度为网格列宽 */
    height: auto; /* 高度自适应 */
    object-fit: cover; /* 保持图片比例 */
    border-radius: 8px; /* 图片圆角 */
  }

  /* 鼠标悬停动画效果 */
.paper-gallery img {
    width: 100%; /* 图片宽度为网格列宽 */
    height: auto; /* 高度自适应 */
    object-fit: cover; /* 保持图片比例 */
    border-radius: 8px; /* 图片圆角 */
    transition: transform 0.3s ease; /* 平滑变换效果 */
  } 

  /* 新增的CSS样式 */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 创建两列的网格布局 */
    gap: 20px; /* 图片之间的间隔 */
    width: 100%; /* 容器宽度为100% */
    padding: 20px; /* 内边距 */
  }

  .logo-grid img {
    width: 100%; /* 图片宽度为网格列宽 */
    height: auto; /* 高度自适应 */
    object-fit: contain; /* 保持图片比例 */
    max-height: 100px; /* 设置最大高度 */
  }

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        position: relative;
    }

    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--dark-bg);
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: block;
    }
} 

.wechat-qr img {
    width: 115px; /* 设置二维码的宽度 */
    height: 115px; /* 高度自适应 */
    border: 1px solid #ddd; /* 可以添加边框，根据需求调整 */
    border-radius: 4px; /* 可以添加圆角，根据需求调整 */
}
 
 
        @keyframes fadeInUp50 {
            from {
                visibility: hidden;
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                visibility: visible;
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fadeInUp50 {
            animation-duration: 0.8s;
            animation-fill-mode: both;
        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 手机 */
        @media only screen and (max-width: 1000px){
    .bannerText { font-size: 25px !important;color:#fff !important; } 
    section h2:after {margin:10px auto !important;} 
    .research-grid {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: space-between;
        /* border:1px solid red;  */
        /* padding: 2rem; */
        /* height: 1000px !important; */
    }
    .research-item {
        width: 100%;
        height: 100% !important;
        padding: 3% !important;
        margin-bottom: 10px;
        /* border:1px solid red; */
    }
    .research-item2 {
        margin-bottom: 0px;
    }   
    .txt_0 {
        color: #333;
        margin:10px 0;
        font-size: 18px;
        font-weight: 700;
    }
    .txt_1 {
        font-size: 25px !important;
        margin: 10px 0 20px;
        font-weight: 700;
    }
    .txt_2 {
        font-size:16px !important;
        margin:14px 0;
    } 
    .txt_4 {
        color: #333;
        font-size: 16px;
        margin: 20px 0;
        font-weight: 700;
    }
    #project-aging-theory,#research-intro{padding-bottom:0}
    .research-projects {
        margin-bottom: 0px;
    }
    .main {
        padding-top: 50px;
    }
    
} 

/* pc */
@media only screen and (min-width: 1001px){
    .bannerText { font-size: 50px !important;color:#fff !important; } 
    section h2:after {margin:40px auto !important;} 
    .research-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* border:1px solid red;  */
        /* padding: 2rem; */
        height: 700px !important;
    }
    .research-item {
        width: 49%;
        height: 100% !important;
        padding: 3% !important;
        /* border:1px solid red; */
    }  
    .txt_0 {
        color: #333;
        margin:20px 0;
        font-size: 24px;
        font-weight: 700;
    }
    .txt_1 {
        font-size: 40px !important;
        margin: 30px 0 30px;
        font-weight: 700;
    }
    .txt_2 {
        font-size:16px !important;
        margin:16px 0;
    } 
    .txt_4 {
        color: #333;
        font-size: 18px;
        margin: 20px 0;
        font-weight: 700;
    }
}

/* 新增模型图样式 */
.model-diagram {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  padding: 25px;
  text-align: center;
  background-color: rgba(55, 136, 63, 0.08); /* 浅绿色背景 */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.model-diagram img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(55, 136, 63, 0.15);
}

.model-diagram figcaption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  padding: 0 10px;
}

/* 新增文本样式 */
.model-description {
  text-align: left;
  margin-top: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 10px;
}

/* 移动端字体调整 */
@media (max-width: 768px) {
    .model-diagram figcaption.txt3 {
        font-size: 14px !important; /* 调整图注字体大小 */
    }

    .model-diagram .model-description {
        font-size: 14px !important; /* 调整模型描述文本的字体大小 */
    }
}

/* 桌面端等比例缩小图片 */
@media (min-width: 769px) {
    .model-diagram img {
        max-width: 100%; /* 确保图片宽度不超过容器 */
        height: auto; /* 等比例缩放 */
        object-fit: contain; /* 确保图片内容完整显示 */
    }
}

/* 新增文本样式 */
.model-description {
  text-align: center; /* 文本居中 */
  font-style: italic; /* 文本斜体 */
  margin-top: 20px;
  color: #333;
  font-size: 1rem; /* 保持字体大小不变 */
  line-height: 1.6;
  padding: 0 10px;
}

/* 桌面端放大文本字体 */
@media (min-width: 769px) {
    .model-description {
        font-size: 1.5rem; /* 放大字体大小 */
        line-height: 1.8; /* 调整行高以适应更大的字体 */
    }

    .model-diagram figcaption.txt3 {
        font-size: 1.5rem; /* 放大图注字体大小 */
    }
}

/* 单独修改指定链接的样式 */
.views-field.views-field-title .field-content a.txt_2[href="https://analysis.fuzhuangtx.com/"] {
    color: #DB0058; /* 玫红色 */
    text-decoration: none; /* 移除下划线 */
}

/* 鼠标悬停时的样式 */
.views-field.views-field-title .field-content a.txt_2[href="https://analysis.fuzhuangtx.com/"]:hover {
    color: #4CAF50; /* 绿色 */
}

/* 点击时的样式 */
.views-field.views-field-title .field-content a.txt_2[href="https://analysis.fuzhuangtx.com/"]:active {
    color: #4CAF50; /* 绿色 */
}

/* 单独修改知乎文章链接的样式 */
.views-field.views-field-title .field-content a.txt_2[href="https://zhuanlan.zhihu.com/p/689840384"] {
    color: #DB0058 !important; /* 玫红色 */
    text-decoration: none !important; /* 移除下划线 */
}

/* 鼠标悬停时的样式 */
.views-field.views-field-title .field-content a.txt_2[href="https://zhuanlan.zhihu.com/p/689840384"]:hover {
    color: #4CAF50 !important; /* 绿色 */
    text-decoration: none !important;
}

/* 点击时的样式 */
.views-field.views-field-title .field-content a.txt_2[href="https://zhuanlan.zhihu.com/p/689840384"]:active,
.views-field.views-field-title .field-content a.txt_2[href="https://zhuanlan.zhihu.com/p/689840384"]:focus {
    color: #4CAF50 !important; /* 绿色 */
    text-decoration: none !important;
}

.publication-item-enhanced {
    display: flex;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.publication-item-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.publication-image {
    flex: 0 0 220px;
    margin-right: 1.8rem;
    position: relative;
}

.publication-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.publication-image img:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.journal-badge {
    position: absolute;
    top: 10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.publication-info {
    flex: 1;
    font-size: 1rem; /* 统一字体大小 */
}

.publication-title {
    margin: 0 0 0.8rem 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.publication-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* 修改超链接样式 */
.publication-title a:hover,
.publication-doi-pmid a:hover {
    color: #DB0058; /* 玫红色 */
    text-decoration: none; /* 去掉下划线 */
}

.publication-title a:active,
.publication-doi-pmid a:active {
    color: #DB0058; /* 玫红色 */
    text-decoration: none; /* 去掉下划线 */
}

.publication-authors {
    margin: 0 0 0.6rem 0;
    color: #555;
    font-weight: 500;
}

.publication-journal {
    margin: 0 0 0.8rem 0;
    color: #555;
}

.publication-doi-pmid {
    margin: 0 0 1.2rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
    color: #555;
    white-space: nowrap; /* 确保在一行显示 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.publication-doi-pmid a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.publication-abstract {
    color: #555;
    line-height: 1.6;
}

.publication-abstract p {
    margin-bottom: 0.8rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .publication-item-enhanced {
        flex-direction: column;
        padding: 1.2rem;
    }
    
    .publication-image {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 1.2rem;
        width: 100%;
        max-width: 220px;
        align-self: center;
    }
    
    .publication-title {
        font-size: 1.2rem;
    }
    
    .publication-doi-pmid {
        white-space: normal; /* 在小屏幕上允许换行 */
    }
}

.publication-item-enhanced {
    display: flex;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.publication-item-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.publication-image {
    flex: 0 0 220px;
    margin-right: 1.8rem;
    position: relative;
}

.publication-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.publication-image img:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.journal-badge {
    position: absolute;
    top: 10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.publication-info {
    flex: 1;
    font-size: 1.05rem; /* 统一字体大小，略微增大 */
    line-height: 1.6; /* 增加行高提高可读性 */
}

.publication-title {
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem; /* 增大标题字体 */
    color: var(--primary-color);
}

.publication-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* 修改超链接样式 */
.publication-title a:hover,
.publication-doi-pmid a:hover {
    color: #DB0058; /* 玫红色 */
    text-decoration: none; /* 去掉下划线 */
}

.publication-title a:active,
.publication-doi-pmid a:active {
    color: #DB0058; /* 玫红色 */
    text-decoration: none; /* 去掉下划线 */
}

.publication-authors {
    margin: 0 0 0.6rem 0;
    color: #555;
    font-weight: 500;
}

.publication-journal {
    margin: 0 0 0.8rem 0;
    color: #555;
}

.publication-doi-pmid {
    margin: 0 0 1.2rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
    color: #555;
    white-space: nowrap; /* 确保在一行显示 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.publication-doi-pmid a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.publication-abstract {
    color: #555;
}

.publication-abstract p {
    margin-bottom: 0.8rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .publication-item-enhanced {
        flex-direction: column;
        padding: 1.2rem;
    }
    
    .publication-image {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 1.2rem;
        width: 100%;
        max-width: 220px;
        align-self: center;
    }
    
    .publication-info {
        font-size: 1rem; /* 移动端稍微减小字体 */
    }
    
    .publication-title {
        font-size: 1.3rem; /* 移动端标题字体 */
    }
    
    .publication-doi-pmid {
        white-space: normal; /* 在小屏幕上允许换行 */
    }
}

@media (max-width: 768px) {
    .publication-title {
        font-size: 1.1rem !important; /* 减小移动端标题字体大小 */
        line-height: 1.3; /* 调整行高保持协调 */
        margin-bottom: 0.5rem; /* 调整底部间距 */
    }
    
    .publication-info {
        font-size: 0.95rem; /* 略微减小信息区域字体大小 */
    }
}

@media (max-width: 768px) {
    .publication-item-enhanced {
        flex-direction: column;
        padding: 1.2rem;
    }
    
    .publication-image {
        display: none; /* 隐藏图片和徽章 */
    }
    
    .publication-info {
        width: 100%; /* 确保信息区域占据全部宽度 */
        font-size: 1rem;
    }
    
    .publication-title {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
  
}

/* 基础样式 */


/* MORE按钮容器样式 */
.more-button-container {
    text-align: left;
    margin-top: 10px; /* 减小与上方文本的间距 */
}

/* MORE按钮样式 */
.more-button {
    font-size: 14px;
    color: #fff;
    background: #37883f; /* 主绿色 */
    cursor: pointer;
    width: 80px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 悬停状态 - 使用浅绿色 */
.more-button:hover {
    background: #4CAF50; /* 浅绿色 */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 点击/激活状态 - 使用更亮的浅绿色 */
.more-button:active {
    background: #66BB6A; /* 更亮的浅绿色 */
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-container {
        padding: 20px;
        margin: 10px;
    }
    
    p {
        font-size: 15px;
    }
    
    .more-button {
        width: 70px;
        height: 28px;
        line-height: 28px;
        font-size: 13px;
    }
} 



@media (max-width: 768px) {
    .publication-item-enhanced {
        flex-direction: column;
        padding: 1.2rem;
    }
    
    .publication-image {
        display: none; /* 隐藏图片和徽章 */
    }
    
    .publication-info {
        width: 100%; /* 确保信息区域占据全部宽度 */
        font-size: 1rem;
    }
    
    .publication-title {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
  
}


@media (max-width: 1250px) {
 .publication-item-enhanced { 
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .model-description, .txt3 {
        font-size: 20px !important; 
    }
    .publication-title {
        font-size: 25px !important;  
    }
    .publication-item-enhanced {
        padding: 30px 20px;
    }
    .publication-authors {
        margin-bottom: 10px;
    }
    .publication-title p {
        margin-bottom: 10px;
    }
    .publication-journal,.publication-doi-pmid {
         margin-bottom: 10px;
         padding-bottom: 10px;
    }
    .publication-abstract p {
        margin-bottom: 0px;
         padding-bottom: 0px;
    }
    .more-button-container {
        /* display: inline-block; */
        margin-top: -20px;

    }
    .publication-item-enhanced {
        padding: 20px 20px;
    }
    .txtSize {
        font-size: 16px !important;

    }
  
}

.publication-title a[href="https://doi.org/10.14336/AD.2025.0541"] {
    color: #45a049 !important;
}

.publication-title a[href="https://doi.org/10.14336/AD.2025.0541"]:hover {
    color: #DB0058 !important;
}

.publication-title a[href="https://doi.org/10.14336/AD.2025.0541"]:active {
    color: #45a049 !important;
}

/* 轮播图样式 */
.swiper-container {
    width: 100%;
    height: auto;
    position: relative;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(55, 136, 63, 0.15);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
}

/* 暂停/播放按钮样式 */
.swiper-play-pause {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(55, 136, 63, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-play-pause:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.swiper-play-pause i {
    color: white;
    font-size: 16px;
}

/* 移动端调整 */
@media (max-width: 768px) {
    .swiper-play-pause {
        width: 35px;
        height: 35px;
        bottom: 8px;
        right: 8px;
    }
    
    .swiper-play-pause i {
        font-size: 14px;
    }
}

/* 暂停/播放按钮样式 - 玫红色 */
.swiper-play-pause {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(219, 0, 88, 0.8); /* 玫红色背景 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-play-pause:hover {
    background: #DB0058; /* 纯玫红色 */
    transform: scale(1.1);
}

.swiper-play-pause i {
    color: white;
    font-size: 16px;
}

/* 分页器按钮样式 - 玫红色 */
.swiper-container .swiper-pagination-bullet {
    background: rgba(219, 0, 88, 0.5) !important; /* 半透明玫红色 */
}

.swiper-container .swiper-pagination-bullet-active {
    background: #DB0058 !important; /* 纯玫红色 */
}

/* 轮播图样式 */
.swiper-container {
    width: 100%;
    height: auto;
    position: relative;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    text-align: center;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(55, 136, 63, 0.15);
}

/* 分页器样式 - 玫红色 */
.model-diagram .swiper-pagination-bullet {
    background: rgba(219, 0, 88, 0.5) !important;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.model-diagram .swiper-pagination-bullet-active {
    background: #DB0058 !important;
}

.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 15px;
}

/* 导航按钮样式 */
.swiper-button-next, .swiper-button-prev {
    color: #DB0058 !important;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

/* 暂停/播放按钮样式 - 玫红色 */
.swiper-play-pause {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(219, 0, 88, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-play-pause:hover {
    background: #DB0058;
    transform: scale(1.1);
}

.swiper-play-pause i {
    color: white;
    font-size: 16px;
}

/* 确保轮播图容器正确显示 */
.model-diagram .swiper-container {
    padding-bottom: 50px; /* 为分页器留出空间 */
}