/* 添加 Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto+Slab:wght@500;600&family=Source+Sans+3:wght@400;500&family=Barlow+Condensed:wght@400;500&display=swap');



/* 颜色变量 */

:root {

    /* 主色调 */

    --primary: #014A97;

    --primary-dark: #013A75;

    /* 深色变体 */

    --primary-light: #0264CC;

    /* 浅色变体 */



    /* 辅助色 */

    --primary-hover: rgba(1, 74, 151, 0.08);

    --primary-bg-subtle: rgba(1, 74, 151, 0.04);



    /* 文字颜色 */

    --text-primary: #2C3E50;

    --text-secondary: #505F74;

    --text-light: #6C757D;



    /* 字体家族 */

    --font-primary: 'Source Sans 3', sans-serif;

    /* 正文字体 */

    --font-heading: 'Merriweather', serif;

    /* 一级标题字体 */

    --font-subheading: 'Roboto Slab', serif;

    /* 二级标题字体 */



    /* 字号 */

    --h1-size: 2.25rem;

    /* 36px */

    --h2-size: 1.75rem;

    /* 28px */

    --h3-size: 1.375rem;

    /* 22px */

    --body-size: 1rem;

    /* 16px */

    --small-size: 0.875rem;

    /* 14px */



    /* 阴影变量 */

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);

    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);

    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);



    /* 圆角变量 */

    --radius-sm: 4px;

    --radius-md: 6px;

    --radius-lg: 8px;

}



/* 全局样式 */

body {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    color: var(--text-primary);

    font-family: var(--font-primary);

    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f0 100%);

}



/* 主体区域样式 */

main {

    flex: 1;

}



/* 侧边栏样式 */

.sidebar {

    position: sticky;

    top: 80px;

}



/* 响应调整 */

@media (max-width: 991.98px) {

    .sidebar {

        position: static;

    }



    /* 为手风琴添加上下间距 */

    #mobileNav {

        margin: 1rem 0;

    }



    /* 优化手风琴在小屏幕下的显示 */

    .accordion-button {

        font-size: 1rem;

    }

}



/* 侧边栏导航样式 */

.nav-section {

    background: white;

    border: none;

    margin-bottom: 1.25rem;

    transition: all 0.3s ease;

    position: relative;

}



/* 侧边栏标题样式 */

.nav-section-title {
	background: linear-gradient(0deg, #F2F4F8, #D8E4F9);
	
	border-radius: 5px 5px 0px 0px;
	
    color: #333;

    padding: 1rem 1.25rem;

    margin: 0;

    font-size: 1.4rem;

    position: relative;

    overflow: hidden;
	
	text-transform:capitalize;

}

.nav-section-title .fas{color:#014A97;
}

/* 添加装饰性元素 */

.nav-section-title::before {

   /* content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 4px;

    height: 100%;

    background-color: #FFB800;*/

    /* 明亮的黄色作为点缀 */

}



/* 导航链接容器 */

.nav-section .nav {

    background: linear-gradient(to bottom, #ffffff, #f8f9fa);

    border-radius: 0 0 var(--radius-md) var(--radius-md);

    padding: 0.75rem 0;

}



/* 导航链接样式 */

.nav-section .nav-link {

    color: var(--text-primary);

    padding: 0.5rem 0.5rem;

    margin: 0 0.25rem;

    border-radius: var(--radius-sm);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    background: transparent;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    font-family: 'Barlow Condensed', sans-serif;

    font-size: 1.05rem;

    font-weight: 400;

    letter-spacing: 0.02em;

}



/* 最后一个链接移除分隔线 */

.nav-section .nav .nav-link:last-child {

    border-bottom: none;

}



/* 悬停时保持分隔线可见 */

.nav-section .nav-link:hover {

    background: rgba(1, 74, 151, 0.04);

    color: var(--primary);

    transform: translateX(3px);

}



/* 激活状态时的分隔线 */

.nav-section .nav-link.active {

    color: var(--primary);

    background-color: var(--primary-bg-subtle);

    font-weight: 500;

    padding-left: 0.75rem;

    border-bottom-color: rgba(0, 0, 0, 0.05);

}



/* 调整链接内边距，使分隔线更美观 */

.nav-section .nav {

    padding: 0.25rem 0;

}



/* 调整链接之间的间距 */

.nav-section .nav-link {

    margin-bottom: 2px;

    /* 增加一点垂直间距 */

}



/* 添加图标 */

.nav-section .nav-link::before {

    content: '\f054';

    /* Font Awesome 箭头图标 */

    font-family: 'Font Awesome 6 Free';

    font-weight: 900;

    font-size: 0.7rem;

    margin-right: 0.4rem;

    color: #FFB800;

    /* 使用黄色作为图标颜色 */

    opacity: 1;

    transform: none;

    transition: all 0.25s ease;

}



/* 悬停效果 */

.nav-section .nav-link:hover {

    color: var(--primary);

    background-color: var(--primary-bg-subtle);

    padding-left: 0.75rem;

    transform: translateX(3px);

}



.nav-section .nav-link:hover::before {

    opacity: 1;

    transform: translateX(0);

}



/* 激活状态 */

.nav-section .nav-link.active {

    color: var(--primary);

    background-color: var(--primary-bg-subtle);

    font-weight: 500;

    padding-left: 0.75rem;

}



.nav-section .nav-link.active::before {

    opacity: 1;

    transform: translateX(0);

    color: var(--primary);

    /* 激活状态下图标颜色改为色 */

}



/* 鼠标悬停个区块的效果 */

.nav-section:hover {

    box-shadow: var(--shadow-md);

    transform: translateY(-2px);

}



/* 添加黄色小标记 */

.nav-section .nav-link.new::after {

    content: 'NEW';

    font-size: 0.65rem;

    background-color: #FFB800;

    color: white;

    padding: 0.2rem 0.4rem;

    border-radius: 3px;

    margin-left: auto;

    font-weight: 600;

    letter-spacing: 0.5px;

}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .nav-section {

        margin-bottom: 1rem;

    }



    .nav-section-title {

        font-size: 1rem;

        padding: 0.875rem 1rem;

    }



    .nav-section .nav-link {

        padding: 0.4rem 0.4rem;

        font-size: 1.1rem;

    }

}



/* 通用样式 */

.text-primary {

    color: #333 !important;

}



.bg-primary {

    background-color: var(--primary) !important;

}



.btn-primary {

    background-color: #031f35;

    border-color:#031f35;

}



.btn-primary:hover {

    background-color: var(--primary-dark);

    border-color: var(--primary-dark);

}



.btn-outline-primary {

    color: var(--primary);

    border-color: var(--primary);

}



.btn-outline-primary:hover {

    background-color: var(--primary);

    border-color: var(--primary);

}



/* 链接样式 */

a {

    color: var(--primary);

    text-decoration: none;

}



a:hover {

    color: var(--primary-dark);

    text-decoration: underline;

}



/* 标题样式 */

h1,

.h1 {

    font-family: var(--font-heading);

    font-size: var(--h1-size);

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 1.5rem;

    line-height: 1.3;

}



h2,

.h2 {

    font-family: var(--font-subheading);

    font-size: var(--h2-size);

    color: var(--text-primary);

    font-weight: 600;

    margin-bottom: 1.25rem;

    line-height: 1.4;

}



h3,

.h3 {

    font-family: var(--font-subheading);

    font-size: var(--h3-size);

    color: var(--text-primary);

    font-weight: 500;

    margin-bottom: 1rem;

    line-height: 1.4;

}



/* 工具类 */

.text-small {

    font-size: var(--small-size);

}



.font-primary {

    font-family: var(--font-primary) !important;

}



.font-heading {

    font-family: var(--font-heading) !important;

}



.font-subheading {

    font-family: var(--font-subheading) !important;

}



/* 导航栏阴影 */

.navbar {

    box-shadow: var(--shadow-sm);

}



/* 内容区域样式 */

.content {

    background: white;

    border-radius: var(--radius-lg);

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05),

        0 2px 6px rgba(0, 0, 0, 0.08);

    border: 1px solid rgba(0, 0, 0, 0.05);

    position: relative;

    overflow: hidden;

}



/* 划效 */

h1::after,

.h1::after {

    content: '';

    display: block;

    width: 80px;

    height: 3px;

    background-color: var(--primary);

    margin-top: 0.5rem;

    border-radius: var(--radius-sm);

}



h2::after,

.h2::after {

    content: '';

    display: block;

    width: 60px;

    height: 2px;

    background-color: var(--primary-light);

    margin-top: 0.5rem;

    border-radius: var(--radius-sm);

}



/* 按钮样式优化 */

.btn {

    border-radius: var(--radius-sm);

    box-shadow: var(--shadow-sm);

    transition: all 0.3s ease;

}



.btn:hover {

    transform: translateY(-1px);

    box-shadow: var(--shadow-md);

}



/* 卡片样式 */

.card {

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: all 0.3s ease;

}



.card:hover {

    box-shadow: var(--shadow-md);

}



/* 表格样式 */

.table {

    border-radius: var(--radius-sm);

    overflow: hidden;

}



/* 输入框 */

.form-control {

    border-radius: var(--radius-sm);

    transition: all 0.3s ease;
	background:#EDF0F5;

}



.form-control:focus {

    box-shadow: 0 0 0 3px rgba(1, 74, 151, 0.1);

}



/* 底部样式优化 */

footer {

    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);

}



/* 添加手风琴样式 */

.accordion-button {

    font-family: var(--font-subheading);

    color: var(--text-primary);

    background-color: white;

    box-shadow: none;

    padding: 1rem;

}



.accordion-button:not(.collapsed) {

    color: white;

    background-color: var(--primary);

}



.accordion-button:focus {

    box-shadow: none;

    border-color: rgba(1, 74, 151, 0.1);

}



.accordion-item {

    border-color: #dee2e6;

    margin-bottom: 0.5rem;

    border-radius: var(--radius-md) !important;

    overflow: hidden;

}



.accordion-body {

    padding: 1rem;

}



.accordion-body .nav-link {

    padding: 0.5rem 1rem;

    color: var(--text-primary);

    transition: all 0.2s ease;

    border-radius: var(--radius-sm);

}



.accordion-body .nav-link:hover {

    color: var(--primary);

    background-color: var(--primary-hover);

    text-decoration: none;

}



/* Offcanvas 样式 */

.offcanvas {

    max-width: 300px;

}



.offcanvas-title {

    font-family: var(--font-heading);

    color: var(--primary);

    font-size: 1.5rem;

}



.mobile-nav-title {

    font-family: var(--font-subheading);

    color: var(--primary);

    font-size: 1.1rem;

    padding: 0.5rem 0;

    margin-bottom: 0.5rem;

    border-bottom: 2px solid var(--primary);

}



.mobile-nav-section .nav-link {

    color: var(--text-primary);

    padding: 0.5rem 1rem;

    font-size: 0.95rem;

    transition: all 0.2s ease;

    border-radius: var(--radius-sm);

}



.mobile-nav-section .nav-link:hover {

    color: var(--primary);

    background-color: var(--primary-hover);

    text-decoration: none;

}



/* 导航栏样式优化 */

.navbar-toggler {

    border: none;

    padding: 0.5rem;

}



.navbar-toggler:focus {

    box-shadow: none;

}



/* 移除旧的响应式菜单样式 */

.accordion {

    display: none;

}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .sidebar {

        display: none;

    }

}



/* 顶部信息栏样式 */

.top-bar {

    font-size: var(--small-size);

    background-color: #f8f9fa;

}



.top-bar .btn-sm {

    font-size: 0.8rem;

    padding: 0.25rem 0.75rem;

}



/* 导航栏样式优化 */

.navbar {

    padding-top: 0.5rem;

    padding-bottom: 0.5rem;

    box-shadow: var(--shadow-sm);

}



.navbar-brand {

    padding: 0;

}



.navbar-nav .nav-link {

    color: var(--text-primary);

    font-weight: 500;

    padding: 0.5rem 1rem;

    margin: 0 0.25rem;

    border-radius: var(--radius-sm);

    transition: all 0.2s ease;

}



.navbar-nav .nav-link:hover,

.navbar-nav .nav-link.active {

    color: var(--primary);

    background-color: var(--primary-bg-subtle);

}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .top-bar {

        display: none;

    }

    .col-auto {

        display: none;

    }

    .navbar-brand img {

        height: 40px;

    }

}



/* 刊息样式 */

.journal-title {

    font-size: 1.75rem;

    margin-bottom: 1.5rem;

    color: var(--primary);

    line-height: 1.3;

}



/* 移除标题的下划线效果 */

.journal-title::after {

    display: none;

}



.journal-meta {

    font-family: var(--font-primary);

    color: var(--text-secondary);

}



.meta-item {

    margin-bottom: 0.5rem;

}



.meta-label {

    font-weight: 500;

    margin-right: 0.5rem;

    color: var(--text-primary);
	
	font-size:1.2rem;

}



.meta-value {

    color: var(--text-secondary);
	
	font-size:1.2rem;

}



/* 按钮组样式 */

.action-buttons {

    margin-top: 2rem;

}



.action-buttons .btn {

    padding: 0.5rem 1rem;

    font-size: 0.95rem;

}



/* 内容区域调整 */

.content {

    padding: 2.5rem;

}



/* 封面图样式 */

/*.content img {

    width: 100%;

    max-width: 300px;

    display: block;

    margin: 0 auto;

}
*/


/* 响应式调整 */

@media (max-width: 767.98px) {

    .content {

        padding: 1.5rem;

    }



    .journal-title {

        font-size: 1.5rem;

        margin-top: 1.5rem;

    }



    .action-buttons {

        margin-top: 1.5rem;

    }



    .content img {

        max-width: 200px;

        margin-bottom: 1.5rem;

    }

}



/* 期刊头部样式 */

.journal-header {

    background-color: #f8f9fa;

    /* 使用 Bootstrap 的浅灰色 */

    border-bottom: 1px solid #dee2e6;

}



.journal-header .container {

    background-color: white;

    border-radius: var(--radius-md);

    padding: 2rem;

    box-shadow: var(--shadow-sm);

}



.journal-title {

    font-size: 1.75rem;

    color: var(--primary);

    margin-bottom: 1rem;

    line-height: 1.3;

}



/* 移除标题下划线 */

.journal-title::after {

    display: none;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .journal-header {

        padding: 1rem 0;

        background-color: #f8f9fa;

    }



    .journal-header .container {

        padding: 1.5rem;

    }



    .journal-title {

        font-size: 1.5rem;

        text-align: center;

    }



    .journal-meta {

        text-align: center;

    }



    .action-buttons {

        text-align: center;

    }

}





.journal-header {

    background-color: transparent;

    border-bottom: none;

}



.journal-header .container {

    background-color: transparent;

    border-radius: 0;

    box-shadow: none;

    padding: 0;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .journal-header {

        padding: 1rem 0;

    }



    .journal-header .container {

        padding: 0;

    }

}



/* 修改导航栏相关样式 */

.navbar-dark {

    padding: 0.75rem 0;

    position: relative;

    z-index: 1030;

    /* 确保在最上层 */

}



.navbar-dark .navbar-toggler {

    padding: 0;

    border: none;

    color: rgba(255, 255, 255, 0.8);

}



.navbar-dark .navbar-toggler:focus {

    box-shadow: none;

}



.navbar-dark .navbar-brand {

    padding: 0;

    margin: 0;

}



/* 移除原有的导航栏阴影 */

.navbar {

    box-shadow: none;

}



/* 调整 Offcanvas 样式 */

.offcanvas {

    max-width: 280px;

}



.offcanvas-header {

    background-color: var(--primary);

    padding: 1rem;

}



.offcanvas-title {

    color: white;

    font-size: 1.25rem;

}



.offcanvas .btn-close {

    filter: brightness(0) invert(1);

}



/* 响应式整 */

@media (min-width: 992px) {

    .navbar-dark {

        display: none;

    }

}



/* 响应式调整 */

@media (max-width: 991.98px) {



    /* 移除顶部信息栏的 display: none，改用 Bootstrap 控制 */

    .journal-banner {

        margin-top: -1px;

        /* 消除可能的间隙 */

    }

}





.journal-header {

    background-color: transparent;

    border-bottom: none;

}



.journal-header .container {

    background-color: transparent;

    border-radius: 0;

    box-shadow: none;

    padding: 0;

}



/* 调整封图尺寸和头部高度 */

.journal-header {

    padding: 1.5rem 0;

    /* 减小上下内距 */

}



.journal-header img {

    width: 70%;





}







/* 响式 */

@media (max-width: 767.98px) {

    .journal-header img {

        max-width: 180px;

        transform: perspective(2000px) rotateY(5deg);

        box-shadow:

            4px 4px 12px rgba(0, 0, 0, 0.2),

            -2px 0 6px rgba(0, 0, 0, 0.15),

            0 6px 20px rgba(0, 0, 0, 0.25),

            inset -2px 0 8px rgba(0, 0, 0, 0.1);

    }



    .journal-header img:hover {

        transform: perspective(2000px) rotateY(12deg);

    }

}



/* 调整期刊信息间距 */

.journal-title {

    font-size: 1.6rem;

    /* 减小标题字号 */

    margin-bottom: 0.75rem;

    /* 减小下距 */

}



.journal-meta {

    margin-bottom: 1rem;

    /* 减小元数据区域的下边距 */

}



.meta-item {

    margin-bottom: 0.25rem;

    /* 减小每个元数据项的间距 */

}



.action-buttons {

    margin-top: 1rem;

    /* 减小按钮组的上边距 */

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .journal-header {

        padding: 1rem 0;

    }



    .journal-header img {

        max-width: 140px;

        /* 200px的70% */

        margin-bottom: 1rem;

    }



    .action-buttons {

        margin-top: 0.75rem;

    }

}



/* 修改期刊通栏样式 */

.journal-banner {

    background-color: #dadfe7;

    position: relative;

    border-bottom: none;
	

}



/* 添加微妙的纹理效果 */

.journal-banner::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");

    opacity: 0.5;

    pointer-events: none;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .journal-header {

        padding: 1.5rem 0;

    }

}



/* 修改 Open Access 徽章样式 */

.open-access-badge {
/*
    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 0.75rem;

    background: linear-gradient(145deg, #ffffff, #f8f9fa);

    border-radius:100%;

    box-shadow: var(--shadow-sm);

    min-width: 100px;

    text-align: center;
*/
}



.open-access-icon {

    font-size: 2rem;

    color: #fff;

    /* 使用橙色 */

    margin-bottom: 0.5rem;

    transition: transform 0.3s ease;

}



.open-access-badge:hover .open-access-icon {

    transform: scale(1.1);

}



.badge-text {

    font-size: 0.75rem;

    font-weight: 600;

    color: #fff;

    letter-spacing: 0.5px;

    white-space: nowrap;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .open-access-badge {

        position: absolute;

        top: 1rem;

        right: 1rem;

        padding: 0.5rem;

        min-width: auto;

    }



    .open-access-icon {

        font-size: 1.5rem;

        margin-bottom: 0.25rem;

    }



    .badge-text {

        font-size: 0.65rem;

    }



    .journal-info {

        padding-right: 60px;

    }

}



/* 修改 About 区域样式 */

.journal-description .lead {

    font-size: 1.1rem;

    color: var(--text-primary);

    font-weight: 400;

    line-height: 1.7;

    margin-bottom: 1.5rem;
	
	text-align:justify;

}



/* 移除不需要的样式 */

.focus-area,

.submission-guidelines {

    display: none;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .journal-description .lead {

        font-size: 1rem;

        line-height: 1.6;

    }

}



/* Latest Articles 样式优化 */

.article-item {

    display: block;

    padding: 1.75rem 1.25rem 1.25rem 1.75rem;

    margin-bottom: 1rem;

    border-radius: var(--radius-md);

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}



/* 移除原有序号样 */

.article-number {

    display: none;

}



/* 添加三角形序号样式 */

.article-item::after {

    content: attr(data-number);

    position: absolute;

    top: 0;

    left: 0;

    background: #FF8C00;

    color: white;

    font-family: var(--font-subheading);

    font-size: 1.1rem;

    font-weight: 600;

    clip-path: polygon(0 0, 100% 0, 0 100%);

    min-width: 50px;

    min-height: 50px;

    display: flex;

    align-items: flex-start;

    justify-content: flex-start;

    padding-top: 0.4rem;

    padding-left: 0.6rem;

    z-index: 1;

}



/* 调整文章内容的内边距，为更大的三角形留出空间 */

.article-item {

    padding: 1.75rem 1.25rem 1.25rem 1.75rem;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .article-item::after {

        min-width: 40px;

        min-height: 40px;

        font-size: 1rem;

        padding-top: 0.3rem;

        padding-left: 0.5rem;

    }



    .article-item {

        padding: 1.5rem 1rem 1rem 1.5rem;

    }

}



/* 保持隔行变色效果 */

.article-item:nth-child(odd) {

    background: linear-gradient(to right, #ffffff, #f8f9fa);

    border: 1px solid rgba(0, 0, 0, 0.05);

}



.article-item:nth-child(even) {

    background: linear-gradient(to right, #f5f7fa, #f1f4f8);

    border: 1px solid rgba(0, 0, 0, 0.08);

}



/* 悬停效果 */

.article-item:hover {

    transform: translateX(5px);

    background: white;

    border-color: rgba(1, 74, 151, 0.15);

    box-shadow:

        0 4px 12px rgba(0, 0, 0, 0.05),

        0 2px 4px rgba(0, 0, 0, 0.1);

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .article-item {

        padding: 1.25rem 1rem 1rem 1.25rem;

    }



    .article-item::after {

        font-size: 0.8rem;

        min-width: 32px;

        min-height: 32px;

        padding-top: 0.15rem;

        padding-left: 0.3rem;

    }

}



/* 添加选项卡相关样式 */

.nav-tabs {

    border-bottom: 2px solid var(--primary-bg-subtle);

}



.nav-tabs .nav-link {

    border: none;

    color: var(--text-secondary);

    font-family: var(--font-subheading);

    font-weight: 500;

    padding: 0.75rem 1.25rem;

    transition: all 0.3s ease;

}



.nav-tabs .nav-link:hover {

    border: none;

    color: var(--primary);

}



.nav-tabs .nav-link.active {

    border: none;

    color: var(--primary);

    background-color: var(--primary-bg-subtle);

    position: relative;

}



.nav-tabs .nav-link.active::after {

    content: '';

    position: absolute;

    bottom: -2px;

    left: 0;

    right: 0;

    height: 2px;

    background-color: var(--primary);

}



/* 引用计数样式 */

.citation-count {

    font-size: 1.75rem;

    font-weight: 700;

    line-height: 1;

    color: var(--primary);

    opacity: 0.8;

}



.citation-label {

    font-size: 0.75rem;

    color: var(--text-secondary);

    opacity: 0.8;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .nav-tabs .nav-link {

        padding: 0.5rem 1rem;

        font-size: 0.9rem;

    }



    .citation-count {

        font-size: 1.5rem;

    }



    .citation-label {

        font-size: 0.7rem;

    }

}



/* 选项卡切换动画 */

.tab-content>.tab-pane {

    transition: all 0.3s ease-in-out;

}



.tab-content>.active {

    animation: fadeIn 0.3s ease-in-out;

}



@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(10px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Footer 样式 */

footer {

    background: linear-gradient(to bottom, #1a1a1a, #000000);

    border-top: 3px solid var(--primary);

}



.footer-title {

    font-family: var(--font-subheading);

    font-size: 1.1rem;

    font-weight: 600;

    margin-bottom: 1.25rem;

    color: #fff;

    position: relative;

    padding-bottom: 0.75rem;

}



.footer-title::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: 0;

    width: 40px;

    height: 2px;

    background-color: var(--primary);

}



.footer-links li {

    margin-bottom: 0.75rem;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: all 0.3s ease;

    display: inline-block;

    font-size: 0.95rem;

}



.footer-links a:hover {

    color: #fff;

    transform: translateX(5px);

    text-decoration: none;

}



.footer-links i {

    font-size: 0.85rem;

    transition: all 0.3s ease;

}



.footer-links a:hover i {

    transform: translateX(3px);

}



/* 版权信息样式 */

footer .border-top {

    border-color: rgba(255, 255, 255, 0.1) !important;

}



footer .text-center {

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.9rem;

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .footer-title {

        margin-bottom: 1rem;

    }



    .footer-links li {

        margin-bottom: 0.5rem;

    }



    footer .text-center {

        font-size: 0.85rem;

    }

}



/* 优顶部文字投影效果 */

.journal-title {

   /* text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8),

        0 4px 12px rgba(255, 255, 255, 0.5);

    color: var(--primary);*/

color: #333333;
line-height: 1.4;

}



.meta-label {

    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);

    font-weight: 600;

}



.meta-value {

    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);

}



/* 按文字也添加轻微投影 */

.action-buttons .btn {

    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);

}



.action-buttons .btn-primary {

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

    /* 主按钮使用深色投影 */

}



/* 搜索框样式 */

.search-form .input-group {

    width: 360px;

}



.search-form .form-control {

    border-right: none;

    box-shadow: none;

    border-color: var(--primary);

}



.search-form .form-control:focus {

    box-shadow: none;

}



.search-form .btn {

    border-left: none;

    padding: 0.25rem 0.75rem;

}



.search-form .btn:hover {

    background-color: var(--primary-bg-subtle);

    color: var(--primary);

}



/* 响应式调整 */

@media (max-width: 576px) {

    .search-form .input-group {

        width: 200px;

    }

}



/* 移动端导航栏优化 */

.navbar-dark {

    background: var(--primary);

    /* 使用主题 */

    padding: 0.5rem 0;

}



.navbar-dark .navbar-brand {

    padding: 0.25rem 0;

}



.navbar-dark .navbar-toggler {

    border: none;

    padding: 0.25rem;

}



.navbar-dark .navbar-toggler:focus {

    box-shadow: none;

}



/* 移动端搜索样式 */

.mobile-search {

    padding: 0.5rem 1rem;

    background: var(--primary-dark);

    display: none;

    /* 默认隐藏 */

}



.mobile-search .search-form {

    width: 100%;

}



.mobile-search .input-group {

    width: 100%;

}



/* 期刊信息域响应式优化 */

@media (max-width: 767.98px) {



    /* 显示移动端搜索框 */

    .mobile-search {

        display: block;

    }



    /* 调整期刊封面图片 */

    .journal-header img {

        max-width: 180px;

        margin: 0 auto 1.5rem;

    }



    /* 调整期刊标题 */

    .journal-title {

        font-size: 1.5rem;

        text-align: center;

        margin-bottom: 1rem;

    }



    /* 调整元数据显示 */

    .journal-meta {

        margin-bottom: 1.5rem;

    }



    .meta-item {

        flex-direction: column;

        align-items: center;

        text-align: center;

        margin-bottom: 1rem;

    }



    .meta-label {

        margin-bottom: 0.25rem;

    }



    /* Open Access 徽章位置调整 */

    .open-access-badge {

        position: absolute;

        top: 1rem;

        right: 1rem;

        margin: 0;

    }



    /* 按钮组样式调整 */

    .action-buttons {

        display: grid;

        grid-template-columns: 1fr;

        gap: 0.75rem;

        margin-top: 1.5rem;

    }



    .action-buttons .btn {

        margin: 0;

        width: 100%;

        justify-content: center;

    }

}



/* 超小屏幕优化 */

@media (max-width: 575.98px) {

    .journal-header {

        padding: 1rem;

    }



    .journal-header img {

        max-width: 150px;

    }



    .journal-title {

        font-size: 1.25rem;

    }



    .meta-item {

        font-size: 0.9rem;

    }



    .open-access-badge {

        transform: scale(0.9);

    }

}



/* 添加 Footer Logo 相关样式 */

.footer-logo {

    filter: brightness(0) invert(1);

    /* 将logo转为白色 */

    opacity: 0.9;

    transition: opacity 0.3s ease;

}



.footer-logo:hover {

    opacity: 1;

}



.social-links a {

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.25rem;

    transition: all 0.3s ease;

}



.social-links a:hover {

    color: white;

    transform: translateY(-2px);

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .footer-logo {

        width: 100px;

        margin-bottom: 1rem;

    }



    .social-links {

        margin-bottom: 1.5rem;

    }

}



/* 优化文章元数据样式 */

.article-meta {

    display: flex;

    align-items: center;

    font-size: 0.85rem;

    position: relative;

    /*padding-top: 0.75rem;*/

    /* 为分隔线留出空间 */

    margin-top: 0.75rem;

    /* 增加与上方内容的间距 */

}



/* 修改为横向分隔线 */

/*.article-meta::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 1px;

    background: linear-gradient(to right,

            rgba(0, 0, 0, 0.08),

            rgba(0, 0, 0, 0.12) 50%,

            rgba(0, 0, 0, 0.08));

}
*/


/* 调整元数据布局 */

.article-meta .text-muted {

    margin-right: auto;

    /* 将日期推到左侧 */

}



/* 美化 Read More 钮 */

.article-meta .btn-link {

    color: var(--primary);

    text-decoration: none;

    padding: 0.35rem 0.75rem;

    border-radius: var(--radius-sm);

    transition: all 0.3s ease;

    font-weight: 500;

    background: var(--primary-bg-subtle);

    border: 1px solid transparent;

    margin-left: 1rem;

    /* 增加与日期的间距 */

}



.article-meta .btn-link:hover {

    background: var(--primary);

    color: white;

    transform: translateY(-1px);

    box-shadow: 0 2px 4px rgba(1, 74, 151, 0.2);

}



/* 调整图标样式 */

.article-meta .btn-link i {

    transition: transform 0.3s ease;

}



.article-meta .btn-link:hover i {

    transform: translateX(2px);

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .article-meta {

        flex-wrap: wrap;

        padding-top: 0.5rem;

        margin-top: 0.5rem;

    }



    .article-meta .text-muted {

        width: 100%;

        /* 在小屏幕上日期占满宽度 */

        margin-bottom: 0.5rem;

    }



    .article-meta .btn-link {

        padding: 0.25rem 0.5rem;

        font-size: 0.8rem;

        margin-left: 0;

        /* 移除左边距 */

    }

}



/* 期刊指数卡片样式 */

.metrics-card {

    background: white;

    border-radius: var(--radius-md);

    padding: 1rem;

    box-shadow: var(--shadow-sm);

    transition: all 0.3s ease;

    border: 1px solid rgba(0, 0, 0, 0.08);

}



.metrics-card:hover {

    box-shadow: var(--shadow-md);

    transform: translateY(-2px);

}



/* CiteScore 值样式 */

.score-value .h2 {

    color: var(--primary);

    font-weight: 700;

    letter-spacing: -1px;

    line-height: 1;

}



/* 进度条样式 */

.metrics-card .progress {

    background-color: #DCDCDC;

    overflow: hidden;

}



.metrics-card .progress-bar {

    background-color: #007398;

    transition: width 1s ease;

}



/* 徽章样式 */

.metrics-card .badge {

    font-size: 0.75rem;

    font-weight: 500;

    padding: 0.35em 0.65em;

    background-color: #007398 !important;

}



/* 页脚样式 */

.metrics-footer {

    font-size: 0.75rem;

    color: #505050;

}



/* SJR 图片样式 */

.metrics-card img {

    max-width: 100%;

    height: auto;

    display: block;

    margin: 0 auto;

}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .metrics-card {

        padding: 0.75rem;

    }



    .score-value .h2 {

        font-size: 1.5rem;

    }
}



/* Scopus logo 大小调整 */

.metrics-footer img {

    width: 50px;

    /* 限制 logo 宽度 */

    height: 40px;

    /* 限制 logo 高度 */

    object-fit: contain;

    /* 保持图片比例 */

}



/* 添加 CiteScore 徽章样式 */

.citescore-badge {

    width: 100%;

    border-radius: var(--radius-md);

    border: 1px solid rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition: all 0.3s ease;

}



/* 上半部分深色背景 */

.citescore-badge .score-header {

    background: linear-gradient(135deg, #1a237e, #0d47a1);

    padding: 1rem;

    /* 增加边距 */

    position: relative;

    overflow: hidden;

    border: none;

}



/* 修改波浪效果 */

.citescore-badge .wave-bottom {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 30px;

    overflow: hidden;

}



.citescore-badge .wave-bottom::before {

    /* content: '';

    position: absolute;

    left: -15%; /* 扩大左右范围 */

    bottom: 0;

    width: 130%;

    /* 扩大宽度确保覆盖整个区域 */

    height: 100%;

    background: white;

    border-radius: 100% 100% 0 0;

    /* 使用更大的圆角创造更明显的波浪效果 */

    transform: scale(1, 0.8);

    /* 增加波浪幅度 */

    animation: wave 4s ease-in-out infinite;

    */

}



@keyframes wave {



    0%,

    100% {

        transform: scale(1, 0.8) translateX(0);

    }



    50% {

        transform: scale(1, 0.8) translateX(-4%);

        /* 增加移动幅度 */

    }

}



/* Scopus logo 式 */

.citescore-badge .scopus-logo {

    height: 16px;

    /* 略微增大 logo */

    width: auto;

    object-fit: contain;

    filter: brightness(0) invert(1);

}



/* 分数值样式 */

.citescore-badge .score-value {

    font-size: 1.8rem;

    /* 增大字号 */

    font-weight: 700;

    color: #FFD700;

    line-height: 1;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}



/* 分数标签样式 */

.citescore-badge .score-label {

    font-size: 0.85rem;

    /* 增大字号 */

    color: rgba(255, 255, 255, 0.9);

    font-weight: 500;

    line-height: 1;

}



/* 下半部分样式 */

.citescore-badge .score-details {

    background: white;

    text-align: center;

    padding: 0.75rem;

    border-top: none;

    /* 确保移除任何可能的边框 */

}



.citescore-badge .year {

    font-size: 0.9rem;

    /* 增大字号 */

    font-weight: 600;

    color: var(--text-primary);

    line-height: 1.2;

}



.citescore-badge .percentile {

    font-size: 0.8rem;

    /* 增大字号 */

    color: var(--text-secondary);

    line-height: 1.2;

}



/* 移除底部边框线 */

.citescore-badge {

    border: none;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    /* 添加轻微阴影 */

}



/* 期刊数据展示样式 */

.data-show {}



.journal-metrics .metric-card {

    background: white;

    border-radius: 12px;

    padding: 1.25rem;

    text-align: left;

    height: 100%;

    position: relative;

    overflow: hidden;

    cursor: pointer;

    border: 1px solid rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;

}



/* 数值样式 */

.journal-metrics .metric-value {

    font-size: 1.75rem;

    font-weight: 700;

    margin-bottom: 0.25rem;

    font-family: 'Roboto Slab', serif;

    line-height: 1.2;

    display: block;

}



/* 为不同卡片的数值设置对应颜色 */

.metric-card.apc .metric-value {

    color: #FA8E15;

}



.metric-card.first-decision .metric-value {

    color: #5CA3E1;

}



.metric-card.review-time .metric-value {

    color: #998CF6;

}



.metric-card.acceptance-time .metric-value {

    color: #56D0FD;

}



.metric-card.acceptance-rate .metric-value {

    color: #F57C00;

}



/* 标签样式 */

.journal-metrics .metric-label {

    color: #555;

    font-size: 0.9rem;

    line-height: 1.4;

    font-weight: 500;

   /* border-top: 1px silver solid;

    margin-top: 5px;

    padding-top: 5px;*/

}



.journal-metrics .unit {

    font-size: 0.95rem;


    color: #FA8E15;

}

.journal-metrics .unit-td {

    font-size: 0.95rem;


    color: #5CA3E1;

}

.journal-metrics .unit-rt {

    font-size: 0.95rem;


    color:#998CF6;

}

.journal-metrics .unit-sa {

    font-size: 0.95rem;


    color:#56D0FD;

}


/* 圆形装饰样式 */

.corner-circle {

    position: absolute;

    width: 50px;

    height: 50px;

    top: -25px;

    right: -25px;

    border-radius: 50%;

    transition: transform 0.5s ease;

    z-index: 1;

}



/* 卡片内容容器 */

.metric-content {

    position: relative;

    z-index: 2;

    transition: color 0.3s ease;

}



/* 悬停效果 */

.metric-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);

}



.metric-card:hover .corner-circle {

    transform: scale(20);

}



.metric-card:hover .metric-content {

    /*color: white;*/

}



/*.metric-card:hover .metric-value,

.metric-card:hover .metric-label,

.metric-card:hover .metric-icon,

.metric-card:hover .unit {

    color: white !important;

    opacity: 1;

}
*/


/* 响应式调整 */

@media (max-width: 767.98px) {

    .journal-metrics .row {

        display: flex;

        flex-direction: column;

        gap: 1rem;

        padding: 0 1rem;

    }



    .journal-metrics .col {

        width: 100%;

        padding: 0;

    }



    .journal-metrics .metric-card {

        padding: 1rem;

        display: flex;

        align-items: center;

        min-height: 80px;

    }



    .metric-content {

        display: flex;

        align-items: center;

        width: 100%;

        gap: 1rem;

    }



    .journal-metrics .metric-value {

        font-size: 1.5rem;

        margin-bottom: 0;

        min-width: 80px;

    }



    .journal-metrics .metric-label {

        font-size: 0.85rem;

        flex: 1;

    }





}



/* 超小屏幕的额外优化 */

@media (max-width: 375px) {

    .journal-metrics .metric-value {

        font-size: 1.25rem;

        min-width: 70px;

    }



    .journal-metrics .metric-label {

        font-size: 0.8rem;

    }



    .metric-icon {

        font-size: 1.25rem;

    }

}



/* Topics 列表样式 */

.topics-list {

    background: white;

    border-radius: 0 0 var(--radius-md) var(--radius-md);

    padding: 0.5rem;

}

.topics-featured{
	align-items: center;

    padding: 0.5rem 0.75rem 0 0.75rem;

    color: var(--text-primary);

    text-decoration: none;

   /* border-radius: var(--radius-sm);*/

    transition: all 0.3s ease;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    margin-bottom: 0.5rem;

    background: white;
	}
.topics-featured p{
	padding-top:0.5rem;
	color: var(--text-primary);
}

.topics-featured p a{
	color: var(--text-primary);
}
.topic-item {

    display: flex;

    align-items: center;

    padding: 0.5rem 0.75rem;

    color: var(--text-primary);

    text-decoration: none;

   /* border-radius: var(--radius-sm);*/

    transition: all 0.3s ease;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    margin-bottom: 0.5rem;

    background: white;

}



.topic-item:last-child {

    margin-bottom: 0;
	border-bottom:none;

}



/* 图标容器样式 */

.topic-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    border-radius: 8px;

    overflow: hidden;

    margin-right: 0.75rem;

    position: relative;

}



/* 图片样式 */

.topic-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.3s ease;

}



.topic-content {

    flex: 1;

    overflow: hidden;

    padding: 0.25rem 0;

}



/* 统一的文本样式 */

.topic-text {

    color: var(--text-primary);

    font-size: 0.9rem;

    line-height: 1.4;

    font-weight: 500;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

}



/* 悬停效果 */

.topic-item:hover {

    background: var(--primary-bg-subtle);

    border-color: var(--primary);

    transform: translateX(5px);

    text-decoration: none;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}



.topic-item:hover .topic-img {

    transform: scale(1.1);

}



.topic-item:hover .topic-text {

    color: var(--primary);

}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .topic-item {

        padding: 0.4rem 0.6rem;

    }



    .topic-icon {

        width: 40px;

        height: 40px;

        min-width: 40px;

        margin-right: 0.6rem;

    }



    .topic-text {

        font-size: 0.85rem;

    }

}



/* 修改卡片基础样式 */

.journal-metrics .metric-card {

    background: rgb(255, 255, 255);

    border-radius: 12px;

    padding: 1.25rem;

    height: 100%;

    position: relative;

    overflow: hidden;

    cursor: pointer;

    border: 1px solid rgba(0, 0, 0, 0.05);

    transition: transform 0.3s ease;

}






/*.metric-card:hover .metric-value,

.metric-card:hover .metric-label,

.metric-card:hover .metric-icon {

    color: white !important;

    opacity: 1;

}*/



/* 调整图标位置和样式 */

.metric-icon .icon{
	 width: 4em;
  height: 4em;

    

     /*opacity: 0.35; */









}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .corner-circle {

        width: 40px;

        height: 40px;

        top: -20px;

        right: -20px;

    }



    /* 在小屏幕下增加缩放比例 */

    .metric-card:hover .corner-circle {

        transform: scale(25);

        /* 进一步增加缩放比例 */

    }

}



/* 超小屏幕的额外优化 */

@media (max-width: 575.98px) {

    .metric-card:hover .corner-circle {

        transform: scale(30);

        /* 在最小屏幕下使用最大缩放比例 */

    }

}



/* 调整期刊信息布局 */

.journal-header {

    background-color: transparent;

    border-bottom: none;

}



/* 移动端响应式调整 */

@media (max-width: 991.98px) {

    .journal-meta {

        margin-bottom: 2rem;

    }



    /* 在移动端调整指数显示位置 */

    .citescore-badge {

        margin-top: 1rem;

    }



    /* 调整Open Access徽章位置 */

    .open-access-badge {

        position: static;

        margin-bottom: 1rem;

    }



    /* 调整章器布局 */

    .badge-container {

        width: 160px;

        /* 减小宽度 */

        margin-bottom: 1rem;

        /* 增加间距 */

    }



    /* 调整徽章位置 */

    .d-flex.flex-column.align-items-end {

        align-items: flex-start !important;

        /* 左对齐 */

        margin-top: 1rem;

        /* 增加顶部间距 */

    }



    /* 移除绝对定位 */

    .open-access-badge {

        position: static;

        margin-bottom: 1rem;

    }



    /* 调整CiteScore徽章 */

    .citescore-badge {

        margin-top: 0;

    }

}



/* 超小屏幕优化 */

@media (max-width: 575.98px) {

    .journal-header {

        padding: 1rem;

    }



    .journal-title {

        font-size: 1.25rem;

        text-align: center;

        margin-bottom: 1rem;

    }



    .meta-item {

        text-align: center;

    }



    /* 调整徽章容器 */

    .badge-container {

        width: 140px;

        /* 进一步减小宽度 */

    }



    /* 调徽章组的位置 */

    .d-flex.flex-column.align-items-end {

        width: 100%;

        align-items: center !important;

        /* 居中对齐 */

    }

}



/* 调整徽章组件的基础式 */

.badge-container {

    transition: all 0.3s ease;

}



.open-access-badge,

.citescore-badge {

    width: 100%;

    margin: 0;

    /* 移除外边距 */

}



/* 徽章容器统一样式 */

.badge-container {

    /*width: 180px;*/

    /* 统一固定宽度 */

    transition: all 0.3s ease;

}



/* Open Access 徽章样式 */

.open-access-badge {
	background:url(../images/img//score-bg.png);
    color: white;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(244, 164, 96, 0.2);

}



/* CiteScore 徽章样式 */

.citescore-badge {
	background:url(../images/img//open-access-bg.png);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(244, 164, 96, 0.2);


}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .badge-container {

        width: 160px;

    }

}



@media (max-width: 575.98px) {

    .badge-container {

        width: 140px;

    }

}



/* 模板下载区域样式 */

.template-download-area {

    background: white;

    border-radius: 0 0 var(--radius-md) var(--radius-md);

    padding: 1rem;

}



.template-item {

    display: flex;

    align-items: center;

    padding: 1rem;

    background: linear-gradient(to right, #f8f9fa, white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    border-radius: var(--radius-md);

    margin-bottom: 0.75rem;

    transition: all 0.3s ease;

}



.template-item:last-child {

    margin-bottom: 0;

}



/* 图标样式 */

.template-icon {

    width: 40px;

    height: 40px;

    min-width: 40px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 1rem;

    font-size: 1.25rem;

    color: white;

    background: linear-gradient(135deg, #2196F3, #1976D2);

    transition: all 0.3s ease;

}



/* LaTeX 模板使用不同的颜色 */

.template-icon.latex {

    background: linear-gradient(135deg, #4CAF50, #388E3C);

}



/* 模板信息样式 */

.template-info {

    flex: 1;

}



.template-name {

    font-weight: 500;

    color: var(--text-primary);

    margin-bottom: 0.25rem;

}



.template-size {

    font-size: 0.75rem;

    color: var(--text-secondary);

}



/* 下载按钮样式 */

.download-btn {

    width: 36px;

    height: 36px;

    min-width: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    background: var(--primary-bg-subtle);

    border: 1px solid transparent;

    transition: all 0.3s ease;

}



/* 悬停效果 */

.template-item:hover {

    transform: translateX(5px);

    border-color: var(--primary);

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}



.template-item:hover .template-icon {

    transform: scale(1.1);

}



.template-item:hover .download-btn {

    background: var(--primary);

    color: white;

    transform: scale(1.1);

}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .template-download-area {

        padding: 0.75rem;

    }



    .template-item {

        padding: 0.75rem;

    }



    .template-icon {

        width: 36px;

        height: 36px;

        min-width: 36px;

        font-size: 1rem;

    }



    .download-btn {

        width: 32px;

        height: 32px;

        min-width: 32px;

    }

}



/* News 区域样式优化 */

.news-section {

    margin: 1.5rem 0;

}



.news-item {

    /*display: flex;*/

    align-items: flex-start;

    padding: 1rem 0rem;

    margin-bottom: 0.875rem;

    background: white;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
	text-align:left;

}



.news-item:last-child {

    margin-bottom: 0;
	
	border-bottom: none;

}



.news-content {

    flex: 1;

    padding: 0 1rem;

    /* 减小左右内边距 */

}

.news-date{
color: #F38000;
width:30%;
}
.news-date:before {
   width: 4px;
height: 18px;
background: #F38000;
content:'';
display:inline-block;
margin-right:0.8rem;
vertical-align:middle;
text-align:center;
}
.news-text {

    display: flex;

    flex-direction: column;

    gap: 0.5rem;

    /* 减小间距 */

}



/* 分类标签样式 - 使用主题色 */

.news-category {

    display: inline-block;

    padding: 0.25rem 0.75rem;

    background: var(--primary-bg-subtle);

    color: var(--primary);

    border-radius: 20px;

    font-size: 0.85rem;

    font-weight: 500;

}



/* 日期块样式优化 */

.date-block {

    width: 85px;

    height: 85px;

    background: linear-gradient(145deg, var(--primary), var(--primary-dark));

    border-radius: var(--radius-md);

    position: relative;

    overflow: hidden;

    box-shadow:

        0 4px 12px rgba(1, 74, 151, 0.2),

        inset 0 -2px 6px rgba(0, 0, 0, 0.1);

    display: flex;

    flex-direction: column;

}



/* 日期装饰效果 - 橙色顶部区域 */

.date-block::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 32px;

    /* 调整顶部区域高度 */

    background: linear-gradient(145deg, #FF8C00, #FFA500);

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}



/* 日期文本样式优化 */

.date-text {

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    position: relative;

    z-index: 1;

}



.date-month {

    font-size: 0.9rem;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.95);

    text-transform: uppercase;

    letter-spacing: 0.5px;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

}



.date-day {

    font-size: 2.25rem;

    font-weight: 700;

    color: white;

    line-height: 1;

    margin: 0.1rem 0;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}



.date-year {

    font-size: 0.8rem;

    color: rgba(255, 255, 255, 0.9);

    font-weight: 500;

    margin-top: auto;

    padding-bottom: 0.4rem;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

}



/* 响应式调整 */

@media (max-width: 576px) {

    .date-block {

        width: 75px;

        height: 75px;

    }



    .date-block::before {

        height: 28px;

    }



    .date-month {

        font-size: 0.8rem;

        padding: 0.35rem 0;

    }



    .date-day {

        font-size: 2rem;

        margin: 0.05rem 0;

    }



    .date-year {

        font-size: 0.75rem;

        padding-bottom: 0.35rem;

    }

}



/* 悬停效果 */

.news-item:hover {

    transform: translateX(5px);

    border-color: var(--primary);

    box-shadow: 0 4px 15px rgba(1, 74, 151, 0.12);

}



.news-item:hover .date-block {

    box-shadow:

        0 6px 15px rgba(1, 74, 151, 0.25),

        inset 0 -2px 6px rgba(0, 0, 0, 0.15);

}



/* 响应式调整 */

@media (max-width: 576px) {

    .news-item {

        padding: 0.875rem 1rem;

    }



    .date-block {

        width: 70px;

        height: 70px;

    }



    .date-block::before {

        height: 25px;

    }



    .date-day {

        font-size: 1.5rem;

    }



    .news-text-main p {

        font-size: 1rem;

        padding-right: 1rem;

    }

}



/* 链按钮样式 */

.news-link {

    padding: 0.25rem 0.75rem;

    /* 减小内边距 */

    margin-top: 0.5rem;

    /* 减小上边距 */

}



.news-link .link-text {

    font-size: 0.85rem;

    /* 减小字号 */

}



.news-link i {

    font-size: 0.8rem;

    transition: transform 0.3s ease;

}



.news-link:hover i {

    transform: translateX(3px);

}



/* 悬停效果 */

.news-item:hover {

    transform: translateX(5px);

    border-color: var(--primary);

    box-shadow: 0 3px 12px rgba(1, 74, 151, 0.1);

}



.news-item:hover .date-block {

    box-shadow: 0 4px 12px rgba(1, 74, 151, 0.2);

}



/* 响应式调整 */

@media (max-width: 576px) {

    .news-item {

        padding: 0.75rem;

        margin-bottom: 0.5rem;

    }



    .date-block {

        width: 65px;

        height: 65px;

    }



    .date-day {

        font-size: 1.25rem;

    }



    .news-content {

        padding: 0 0.75rem;

    }



    .news-link {

        padding: 0.25rem 0.5rem;

    }

}



/* News 区域样式优化 */

.news-text {

    display: flex;

    flex-direction: column;

    gap: 0.5rem;

}



.news-text-main {

    display: flex;

    justify-content: space-between;

    align-items: center;

    /* 改为居中对齐 */

    width: 100%;

    /* 确保占满整行 */

}



/* 标题和内容样式 */

.news-tit{
    margin: 0;

    padding-right: 1.5rem;

    font-size: 1.1rem;

    font-weight: 500;

    line-height: 1.4;

    color: var(--text-primary);

    font-family: var(--font-subheading);
	
	text-align:left;

}
.news-tit a{color:#333;
}


/* 链接按钮样式 */

.news-link {

    padding: 0.25rem 0.75rem;

    background: var(--primary-bg-subtle);

    color: var(--primary);

    text-decoration: none;

    border-radius: var(--radius-sm);

    transition: all 0.3s ease;

    font-weight: 500;

    white-space: nowrap;

    font-size: 0.85rem;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    margin-left: auto;

    /* 自动左边距，推到右边 */

    flex-shrink: 0;

    /* 防止按钮被压缩 */

}



/* 响应式调整 */

@media (max-width: 576px) {

    .news-text-main {

        flex-wrap: wrap;

        /* 在小屏幕上允许换行 */

    }



    .news-link {

        margin-left: auto;

        /* 保持靠右 */

        margin-top: 0.5rem;

        /* 在换行时添加上边距 */

    }

}



/* 期刊头部区域样式优化 */

.journal-header {

    padding: 2rem 0;

}



/* 封面图容器样式 */

.journal-header .col-lg-4 {

    display: flex;

    align-items: flex-start;

}



/* 封面图样式优化 */

.journal-header img {

    width: 100%;

    max-width: 220px;

    /* 限制最大宽度 */

    height: auto;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-md);

    transition: all 0.3s ease;

}



/* 响应式调整 */

@media (max-width: 1199.98px) {

    .journal-header img {

        max-width: 200px;

    }

}



@media (max-width: 991.98px) {

    .journal-header img {

        max-width: 180px;

        margin: 0 auto 1.5rem;

    }

}



@media (max-width: 767.98px) {

    .journal-header {

        padding: 1.5rem 0;

    }



    .journal-header img {

        max-width: 160px;

    }

}



@media (max-width: 575.98px) {

    .journal-header {

        padding: 1rem 0;

    }



    .journal-header img {

        max-width: 140px;

    }

}



/* 期刊信息区域样式 */

.journal-meta {

    margin-bottom: 2rem;

}



/* 指数区域样式 */

.col-lg-4 .d-flex.flex-column.align-items-end {

    width: 100%;

    margin-left: auto;

}



/* 封面图容器样式 */

.journal-header .col-lg-3 {

    display: flex;

    justify-content: center;

    /* 水平居中 */

    align-items: center;

    /* 垂直居中 */

}



/* 封面图样式优化 */

.journal-header img {

    width: 100%;

    max-width: 180px;

    height: auto;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-md);

    transition: all 0.3s ease;

}



/* 响应式调整 */

@media (max-width: 1199.98px) {

    .journal-header img {

        max-width: 200px;

    }

}



@media (max-width: 991.98px) {

    .journal-header img {

        max-width: 180px;

    }

}



@media (max-width: 767.98px) {

    .journal-header img {

        max-width: 160px;

    }

}



@media (max-width: 575.98px) {

    .journal-header img {

        max-width: 140px;

    }

}



/* 数据展示区域动画样式 */

.metric-value {

    position: relative;

    display: inline-flex;

    align-items: baseline;

}



.metric-value .number {

    opacity: 0;

    transform: translateY(10px);

}



.metric-value.animate .number {

    animation: numberFadeIn 0.8s forwards,

        numberCount 2s forwards;

}



.metric-value .unit {

    opacity: 0;

    transform: translateY(5px);

}



.metric-value.animate .unit {

    animation: fadeIn 0.5s 0.3s forwards;

}



@keyframes numberFadeIn {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes numberCount {

    from {

        content: "0";

    }



    to {

        content: attr(data-value);

    }

}



@keyframes fadeIn {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* 数据展示区域样式优化 */

.metric-content {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 0.875rem 0rem;

    /* 进一步减小内边距 */

    min-height: 85px;

    /* 进一步减小最小高度 */

}



/* 图标容器样式 */

.metric-icon {}



/* 图标样式统一 */

.metric-icon i {

    font-size: 2rem;

    /* 减小图标尺寸 */

    opacity: 0.8;

    /* 进一步提高透明度 */

    line-height: 1;

}



/* 数值和标签样式 */

.metric-value {

    margin-bottom: 0.25rem;

    /* 减小间距 */

    text-align: center;

    position: relative;

    z-index: 1;

}



.metric-label {

    text-align: center;

    position: relative;

    z-index: 1;

    font-size: 0.85rem;

    /* 减小标签字号 */

}



/* 响应式调整 */

@media (max-width: 991.98px) {

    .metric-content {

        min-height: 90px;

        padding: 0.75rem;

    }



    .metric-icon {

        bottom: 0.25rem;

        right: 0.4rem;

    }



    .metric-icon i {

        font-size: 1.35rem;

    }

}



@media (max-width: 575.98px) {

    .metric-content {

        min-height: 85px;

        padding: 0.625rem;

    }



    .metric-icon i {

        font-size: 1.25rem;

    }

}



/* 修改 footer 相关样式 */

.footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}



.footer-logo {

    filter: brightness(0) invert(1);

    opacity: 0.9;

    transition: opacity 0.3s ease;

    margin-bottom: 1.5rem;

}



.footer-logo:hover {

    opacity: 1;

}



.journal-name h5 {

    color: rgba(255, 255, 255, 0.9);

    font-family: var(--font-subheading);

    margin: 0;

    font-size: 1.1rem;

    line-height: 1.4;

}



.contact-info {

    color: rgba(255, 255, 255, 0.7);

}



.contact-info p {

    display: flex;

    align-items: center;

    margin-bottom: 0.75rem;

    font-size: 0.95rem;

}



.contact-info i {

    width: 20px;

    opacity: 0.8;

}



.social-links {

    display: flex;

    align-items: center;

}



.social-links a {

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.25rem;

    transition: all 0.3s ease;

}



.social-links a:hover {

    color: white;

    transform: translateY(-2px);

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .footer-brand {

        align-items: center;

        text-align: center;

        margin-bottom: 2rem;

    }

    

    .contact-info {

        text-align: center;

    }

    

    .contact-info p {

        justify-content: center;

    }

    

    .social-links {

        justify-content: center;

    }

}



/* 修改联系方式相关样式 */

.footer .row {

    justify-content: space-between;

}



/* 联系方式区域样式 */

.col-md-6:last-child {

    /*display: flex;

    flex-direction: column;

    align-items: flex-end;*/ /* 改为右对齐 */

}



.contact-info {

    color: rgba(255, 255, 255, 0.7);

    text-align: right; /* 改为右对齐 */

}



.contact-info p {

    display: flex;

    align-items: center;

    justify-content: flex-end; /* 改为右对齐 */

    margin-bottom: 0.75rem;

    font-size: 0.95rem;

}



/* 调整图标位置 */

.contact-info p i {

    margin-right: 0.5rem; /* 图标和文字之间的间距 */

    width: 16px; /* 固定图标宽度，使文字对齐 */

    text-align: center; /* 图标居中对齐 */

}



.social-links {

    display: flex;

    align-items: center;

    justify-content: flex-end; /* 改为右对齐 */

}



/* 响应式调整 */

@media (max-width: 767.98px) {

    .footer .row {

        justify-content: center;

    }



    .col-md-6:last-child {

        align-items: center;

    }

    

    .contact-info {

        text-align: center;

    }

    

    .contact-info p {

        justify-content: center;

    }

    

    .social-links {

        justify-content: center;

    }



    .footer-title {

        text-align: center;

    }

}



/* 标题右对齐 */

.footer-title {

    text-align: right; /* 添加标题右对齐 */

    width: 100%; /* 确保标题占满宽度 */

}



/* 搜索框相关样式 */

.top-bar .col-auto:last-child {

    margin-left: auto; /* 将最后一个 col-auto（搜索框）推到右侧 */

}



.search-form .input-group {

    width:360px;

    margin-left: auto; /* 搜索框组件靠右对齐 */

}



/* 响应式调整 */

@media (max-width: 576px) {

    .search-form .input-group {

        width: 200px;

    }

}

/* 文章链接动画效果 */

.article-title a {

    position: relative;

    display: inline-block;

    color: #333;

    text-decoration: none;

    transition: all 0.3s ease;

}



.article-title a::after {

    content: '';

    position: absolute;

    bottom: -2px;

    left: 0;

    width: 0;

    height: 2px;

    background-color: var(--primary);

    transition: width 0.3s ease;

}



.article-title a:hover {

    color: var(--primary-dark);

    transform: translateX(5px);

}



.article-title a:hover::after {

    width: 100%;

}



/* Read More 按钮动画效果 */

.btn.btn-outline-primary {

    position: relative;

    overflow: hidden;

    transition: all 0.3s ease;

}



.btn.btn-outline-primary::before {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 0;

    height: 0;

    background: rgba(1, 74, 151, 0.1);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    transition: width 0.4s ease, height 0.4s ease;

}



.btn.btn-outline-primary:hover::before {

    width: 200%;

    height: 200%;

}



.btn.btn-outline-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 8px rgba(1, 74, 151, 0.15);

}
svg.icon{width:30px;
height:30px;
}

.editor-icon{
	width:18px;
	height:19px;
	background:url(../images/img/top-icon3.png) no-repeat;
	display:inline-block;

}
.frequency-icon{
	width:20px;
	height:15px;
	background:url(../images/img/top-icon1.png) no-repeat;
	display:inline-block;

}
.publisher-icon{
	width:15px;
	height:24px;
	background:url(../images/img//top-icon.png) no-repeat;
	display:inline-block;
	vertical-align:middle;

}
.emali-icon{
	width:20px;
	height:15px;
	background:url(../images/img//top-icon2.png) no-repeat;
	display:inline-block;

}
.mews-title-main{
	display:flex;
	
	justify-content: space-between;
}


.content-path {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
	padding:1rem 2.5rem;
}

.path a{color:#999;
padding:0.3rem;
font-size: 1.1rem;
}
.path a i{padding-right:0.2rem;
}
.path a.curent{color:#014A97;
}
.page-title{text-align:center;
border-bottom:1px solid #f3f3f3;
font-size:1.8rem;
padding-bottom:0.8rem;
}
.show-title{text-align:center;
border-bottom:1px solid #f3f3f3;
font-size:1.2rem;
padding-bottom:0.8rem;
padding-top:1rem;
}
.qk-index {
    width: 100%;
}
.bname{margin-bottom:0.8rem;
}
.bname a{text-decoration:none;
display:inline-block;
}
.bname a h5{color:#333;
margin-bottom:0;
}
.bname a span{color:#999;}
.qk-loop {
    margin: 0.5rem 0;
}
.qk-loop a {
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    display: block;
    padding: 1rem 0.5rem;
    background:#f3f3f3;
    font-size: 1rem;
}
.qk-loop a:hover{background-color: var(--primary);
color:#FFF;
}
.i-icon{background:#fcecdc;
color:#fbc596;
font-size:1.5rem;
line-height:3.5rem;
border-radius:100%;
width:3rem;
height:3rem;
float:left;
margin-right:0.5rem;
}
.base-info {
    background-image: url(../images/img/base.png);
    padding-left: 50px;
    background-position: left center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}
.s-editor {
    color: #4C4C4C;
    font-size:1.05rem;
    text-align: center;
    padding-bottom: 5px;
    padding-top: 5px;
}


.zzinfo {
    text-align: center;
    margin-bottom: 10px;
    font-size:1.05rem
}
.cblue {
    color: #055999;
}
.uplabel {
    vertical-align: super;
    font-size:0.8rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
}
.dwinfo{
    font-size:1.05rem;
	}
.hs_date {
    font-size: 1.05rem;
    background-color: #f9f9f9;
    color: #333;
    padding: 5px 0px 5px 10px;
}
.down-pdf{background:#f9f9f9;
padding:1rem 0.8rem;
}
.pdf-icon{color:#014a97;
font-size:2.5rem;
}
.pdf-btn{
    background: #014a97;
    color: #fff;
	font-size:1.05rem;
	padding:0.5rem;
}
.p-div{margin-top:3rem;
}
.p-hd{margin: 10px 0;
    border-bottom: 1px #c7c5c5 solid;
}

.p-hd .p-up {
    color: #013f7f;
    text-decoration: none;
    font-size:1rem;
    background-color: #fff;
    padding: 0.2rem 0.5rem;
    display: inline-block;
	border: 1px #013f7f solid;
}
.p-hd .p-up i{padding-right:0.3rem;
}
.p-up-text{ padding: 0.2rem 0.5rem;
}
.iss-tb {
    margin: 10px 0;
}
.iss-h {
    background-color: #014a97;
    float: left;
    font-size:1.05rem;
    color: white;
    padding:0.5rem 0.5rem;
}
.pdf-con {
    float: right;
    background-repeat: no-repeat;
	padding-top:1rem;
}
.iss-hline {
    height: 1px;
    overflow: hidden;
    background-color: #014a97;
    clear: both;
}
.table-striped{border:1px solid #c7c5c5;
}
.table-striped thead{background-color:#d6d8db;
padding:1rem 0.5rem;
}
.table-striped thead tr td{
padding:1rem 0.5rem;
border:1px solid #c7c5c5;
}
.table-striped tbody tr td{padding:0.5rem;
border:1px solid #c7c5c5;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05);
}
.table-hover > tbody > tr:hover{
	background-color: rgba(0, 0, 0, .08);
}
.pub-list{margin:0;
padding:0;
}
.pub-list li {
    line-height: 28px;
    border-bottom: 1px #CCCCCC dashed;
    margin-bottom: 2px;
    background-image: url(../images/images/dot.png);
    background-repeat: no-repeat;
    background-position: left center;
    list-style: none;
    padding: 0.8rem 0;
}
.pub-list li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 0.4rem;
    color: #CCCCCC;
}
.pub-list li a{color:#014A97;
text-decoration:none;
font-size: 1.05rem;
}
.news-time {
    color: #999;
    float: right;
	font-size: 1.05rem;
}
.page-text h1{font-size:1.3rem;
color:#014a97;
}
.page-text h2{font-size:1.28rem;
color:#014a97;
}
.page-text h3{font-size:1.26rem;
color:#014a97;
}
.page-text h4{font-size:1.25rem;
color:#014a97;
}
.page-text h5{font-size:1.1rem;
color:#014a97;
}
.page-text h6{font-size:1.05rem;
color:#014a97;
}
.page-text p, .page-text span{text-align:justify;
}
.cover-bg{background-image:url(../images/img/cover-bg.png);
background-position:bottom center;
background-repeat:no-repeat;
text-align:center;
vertical-align:middle;
background-size:auto;
}
.cover-btn{width:100%;
max-width:180px;
}
.indexing-logo tr td{padding:1rem 1rem;
}
    .toggle-notice {
      display: inline-block;
      cursor: pointer;
      font-weight: bold;
      color: white;
      background-color: #e74c3c;
      border-radius: 10px;
      padding: 16px 24px;
      box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
      margin: 40px auto;
      text-align: center;
	  width:100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      font-size: 20px;
      animation: pulse 2s infinite;
    }

    .toggle-notice:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
      }
    }

    .Notice-content {
      max-width: 100%;
      margin: 0 auto 40px auto;
      padding: 30px;
      background-color: #fff9e6;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      position: relative;
      border-left: 6px solid #e74c3c;
      transition: all 0.3s ease-in-out;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 20px;
      width: 30px;
      height: 30px;
      line-height: 28px;
      text-align: center;
      font-size: 20px;
      color: #888;
      background-color: #f5f5f5;
      border-radius: 50%;
      border: 1px solid #ddd;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: bold;
    }

    .close-btn:hover {
      color: #e74c3c;
      background-color: #fceae9;
      border-color: #e74c3c;
      box-shadow: 0 2px 6px rgba(231, 76, 60, 0.2);
      transform: scale(1.1);
    }

    .Notice h2 {
      color: #c0392b;
      margin-top: 0;
      font-size: 28px;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
      position: relative;
      padding-left: 40px;
    }

    .Notice h2::before {
      content: "⚠️";
      position: absolute;
      left: 0;
      top: -5px;
      font-size: 28px;
    }

    .Notice p {
      margin-bottom: 16px;
    }

    .Notice ul,
    .Notice ol {
      padding-left: 20px;
      margin-bottom: 16px;
    }

    .Notice a {
      color: #2980b9;
      text-decoration: none;
      /*font-weight: bold;*/
    }

    .Notice a:hover {
      text-decoration: underline;
    }

    .Notice strong {
      color: #2c3e50;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
      .toggle-notice {
        font-size: 18px;
        padding: 14px 20px;
        margin: 20px 10px;
      }

      .Notice-content {
        margin: 15px 15px 30px;
        padding: 20px;
      }

      .Notice h2 {
        font-size: 24px;
      }

      .close-btn {
        font-size: 18px;
        top: 8px;
        right: 12px;
      }
    }
.year-tit{margin-bottom:0; 
line-height:3.5rem;
}
