* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}

body { height: 100%;
    background-color: #f0f4f9;
    color:  ;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/* 新增居中容器样式 */
.main-container {
    width: 1200px;
    margin: 0 auto;
    display: block;
	height:100%;
	margin-bottom:10px;
	height:100%; 
	display: flex; 
	flex-direction: column;
}

/* 新增页脚表格样式 */
.footer-table {
  width: 100%;
  margin-top: 20px ;
  text-align: center;
  border-collapse: collapse;
}
.footer-table td {
  padding: 10px 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
}
/* Aboutus.asp ---------------------------------------------等高样式*/

/* 等高布局容器 */
/* 新增居中容器样式 */
.about-main-container {
    width: 1200px;
    margin: 0px auto 10px  auto;
    display: block;
}

/* 等高布局容器 */
.about-equal-height-container {
    display: flex;
    align-items: stretch; /* 确保子项等高 */
}

/* 左侧固定宽度 */
.about-left-sidebar {
    width: 280px;
    flex-shrink: 0; /* 防止收缩 */
	margin-bottom:10px;
}

/* 中间内容区域 */
.about-main-content {
    flex: 1; /* 占据剩余空间 */
    margin: 10px 0px 0px 10px;
}
.about-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    overflow: hidden;
    height: 100%; /* 确保卡片高度100% */
}



.about-body {
    padding:20px 20px;
    min-height: 100%; /* 设置最小高度 */
}
.about-body li {
	margin-left:18px;
}


.about-body a {
    text-decoration: none; /* 移除所有下划线 */
    color: #1d47a3; /* 点击时颜色 */
}

.about-body a:hover {
    color: #E63946; /* 鼠标悬停颜色 */
    display: inline-block;
    text-decoration: none; /* 确保悬停时也没有下划线 */
}

.about-body a:active {
    color: #E63946; /* 点击时颜色 */
    text-decoration: none; /* 确保点击时也没有下划线 */
}

.about-body a:focus {
    color: #E63946; /* 获得焦点时颜色 */
    outline-offset: 2px;
    text-decoration: none; /* 确保获得焦点时也没有下划线 */
}


.qksfso{
     display: flex;
    flex-direction: column;
    align-items: center; /* 水平居中 */
    justify-content: center; /* 垂直居中 */

}


.about-card-header {
    background-color: #0042a8;
    color: white;
    padding: 8px 8px;
    font-weight: bold;
	color:#FFFFFF;
	font-size:14px;
	  font-family: Arial, sans-serif;  /* 英文字体 */
	  

}


/* Aboutus.asp ----------------结束-----------------------------等高样式*/

/* NewsClass.asp ---------------开始-----------------------------*/
/* NewsClass.asp 搜索样式----------*/


.gkml_link {  
            color: #1d47a3; /* 默认颜色 */
            font-size: 14px; 
            line-height: 23px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
            text-decoration: none; /* 确保访问后无下划线 */
            transition: color 0.3s ease, transform 0.2s ease;
            
}        
        .gkml_link:hover {
            color: #E63946; /* 鼠标悬停颜色 */
         
			/*  transform: scale(1.1)放大1.1倍*/
			transform: translateX(2px);/* Y轴移动*/
             /* transform: translateX(5px); /* X轴移动*/
	display: inline-block;
        }
        
        .gkml_link:active {
            color:#E63946; /* 点击时颜色 */
		
        }
        
        .gkml_link:focus {
            color: #E63946; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
.gkml_name{
font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
 color: #1d47a3;
 font-size:13px;
 
 max-width: 420px;        /* 限制最大宽度为50px */

    overflow: hidden;       /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 用省略号表示溢出文本 */
    white-space: nowrap;    /* 强制文本在一行内显示 */
    display: inline-block;  /* 转换为内联块元素，保留内联特性但可以设置宽高 */
    line-height: 16px;      /* 行高与高度一致，实现文字垂直居中 */ 
}
.index_name{
font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
 color: #1d47a3;
 font-size:13px;
 
 max-width: 220px;        /* 限制最大宽度为50px */
    overflow: hidden;       /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 用省略号表示溢出文本 */
    white-space: nowrap;    /* 强制文本在一行内显示 */
    display: inline-block;  /* 转换为内联块元素，保留内联特性但可以设置宽高 */
    line-height: 16px;      /* 行高与高度一致，实现文字垂直居中 */ 
}


 /* 两行文本截断的核心样式 */
        .qkml_zy{
            display: -webkit-box;           /* 使用旧版弹性盒子布局（WebKit浏览器） */
            -webkit-box-orient: vertical;    /* 设置框的方向为垂直 */
            -webkit-line-clamp: 3;           /* 限制显示的行数为2行 */
            overflow: hidden;               /* 隐藏超出部分 */
            text-overflow: ellipsis;        /* 文本溢出时显示省略号 */
            width: 850px;                   /* 设置宽度为800px */
            max-width: 100%;                /* 最大宽度为100% */
            line-height: 1.7;               /* 设置行高 */
            font-size: 13px;                /* 设置字体大小 */

             /* border-bottom: 1px dashed  #CCCCCC;     /*   添加边框 */
            /* border-radius: 6px;             /* 添加圆角 */
            margin: 0px 0;                 /* 添加上下外边距 */
			color: #666666;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
        }
		 /* 分页组件专用样式 - fengye */
        .fengye {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin-top: 20px ;
            padding: 15px;
			 display: inline-block;
        }
        
        .fengye form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .fengye .pagination-info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-right: 10px;
            font-size: 14px;
            color: #3498db;
        }
        
        .fengye .pagination-info span {
            padding: 5px 10px;
            background: #eef7ff;
            border-radius: 4px;
			border: 1px solid #3498db40;

        }
        
        .fengye .pagination-info b {
            color: #e74c3c;
        }
        
        .fengye .pagination-nav {
            display: flex;
            gap: 6px;
			
        }
        
        .fengye .pagination-nav a, 
        .fengye .pagination-nav span {
            padding: 6px 12px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
			
        }
        
        .fengye .pagination-nav a {
            color: #3498db;
            background: #eef7ff;
            border: 1px solid #3498db40;
        }
        
        .fengye .pagination-nav a:hover {
            background: #3498db;
            color: white;
            transform: translateY(-2px);
        }
        
        .fengye .pagination-nav span {
            color: #6c757d;
            background: #e9ecef;
            border: 1px solid #dee2e6;
        }
        
        .fengye .pagination-jump {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .fengye .pagination-jump input[type="text"] {
            width: 50px;
            padding: 6px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            text-align: center;
        }
        
        .fengye .pagination-jump input[type="submit"] {
            background: #2ecc71;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .fengye .pagination-jump input[type="submit"]:hover {
            background: #27ae60;
        }
        
        .fengye .current-page {
            color: #e74c3c !important;
            font-weight: 700;
            
        }
		
        .qsyear {
		background:#0042a8;
            color: #ffffff;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 600; 
            
            font-size: 14px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
			    border: 1px solid #ddd;
    border-radius: 4px;

			
        }	
		
.qs {
    padding: 5px 5px;
    border-radius: 4px;
    font-weight: 600; 
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none; /* 确保访问后无下划线 */
    font-size: 14px;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #1c45a2; /* 添加默认颜色，这样a标签继承黑色 */
}
.qs a {
    color: inherit; /* 改为继承父元素颜色 */
    text-decoration: none; /* 确保访问后无下划线 */
    font-size: 14px;
}

.qs:hover {
    background: #0149b8;
    text-decoration: none; /* 确保访问后无下划线 */
    color: #ffffff; /* 改变父元素颜色，a标签继承 */
}

.qs:active {
    color: #E63946; /* 点击时颜色 */
}
		
		
/* NewsClass.asp ---------------结束 -----------------------------*/
/* Read_Online.asp ---------------结束 -----------------------------*/
        .Read_year {
		color:#0042a8;
            padding: 5px 20px;
            font-weight: 600; 
            font-size: 20px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
			border-bottom:2px solid  #EBEBEB;
		
        }
.Read_Online {
    padding: 5px 5px;
    border-radius: 4px;
    font-weight: 600; 
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none; /* 确保访问后无下划线 */
    font-size: 14px;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #1c45a2; /* 添加默认颜色，这样a标签继承黑色 */
}
.Read_Online a {
    color: inherit; /* 改为继承父元素颜色 */
    text-decoration: none; /* 确保访问后无下划线 */
    font-size: 14px;
}

.Read_Online:hover {
    background: #0149b8;
    text-decoration: none; /* 确保访问后无下划线 */
    color: #ffffff; /* 改变父元素颜色，a标签继承 */
}

.Read_Online:active {
    color: #E63946; /* 点击时颜色 */
}
/* Read_Online.asp ---------------结束 -----------------------------*/

.datas{
 
             font-family: "Microsoft YaHei", "PingFang SC", "WenQuanYi Micro Hei", sans-serif;
  color:#1d47a3;
  font-size:13px;
  line-height:24px;
 
 }
 

.pdftitle{
		
		FONT-SIZE:22px; 
		color:#1d47a3; 
             font-family:"PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
		}

/* 左侧固定宽度 */
.left-sidebar {
    width: 280px;
}

/* 中间内容区域 */
.main-content {
    margin: 0 10px;
}

.jj-body {
    padding:10px 10px;
}



/* 其他原有样式保留 */
.tit {
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
}

.nav-bg {
    background-color: #0042a8;
    color: white;
}

.nav-bg a {
    color: white;
    text-decoration: none;
}

.link-color {
    color: #0042a8;
}

.card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
	 margin-top:10px;/**/
	 
}





.card-header {
    background-color: #0042a8;
    color: white;
    padding: 8px 12px;
    font-weight: bold;
}

.card-body {
    padding:0px 5px;
}
.gkml-body {
    padding:0px 12px 10px 10px;
	margin-bottom:5px;
	
}

.jj-body {
    padding:10px 10px;
}


.imgbottom {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
}


.content-box {
    padding: 0px 5px 0px 5px;
	
    line-height: 1.7;
}



.bw-box {
    padding: 30px 10px 15px 10px;
    line-height: 1.8;
	style="flex: 1; 
	overflow: auto; 
}

.bw-box a {
    text-decoration: none; /* 移除所有下划线 */
    color: #1d47a3; /* 点击时颜色 */
}

.bw-box a:hover {
    color: #E63946; /* 鼠标悬停颜色 */
    transform: translateX(2px); /* 向上移动2像素 */
    display: inline-block;
    text-decoration: none; /* 确保悬停时也没有下划线 */
}

.bw-box a:active {
    color: #E63946; /* 点击时颜色 */
    text-decoration: none; /* 确保点击时也没有下划线 */
}

.bw-box a:focus {
    color: #E63946; /* 获得焦点时颜色 */
    outline-offset: 2px;
    text-decoration: none; /* 确保获得焦点时也没有下划线 */
}

/* -------------------新闻-------------------- */


.news-body {
    padding:10px 10px;
	margin-bottom:5px;
	
}

.news-content-box {
    padding: 0px 0px 0px 5px;
	
    line-height: 1.8;
}

.news-item  .news-link{
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 0;           /* 你可以根据需求调整 */
}

		
.news-link {
    color: #1d47a3;
    font-size: 13px;
    line-height: 15px;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    text-decoration: none;
    
    /* 确保正确的对齐方式 */
    display: inline-block;
    vertical-align: middle;
    
    /* 添加平滑过渡效果 */
    transition: all 0.2s ease;
    
    /* 确保链接不会换行 */
    white-space: nowrap;
    max-width: 100%;
}

.news-link:hover {
    color: #E63946;
    
    /* 向右移动2像素 */
    transform: translateX(2px);
    
    /* 保持对齐方式一致 */
    display: inline-block;
    vertical-align: middle;
}

.news-link:active,
.news-link:focus {
    color: #E63946; /* 点击时颜色 */
}
		
/* -------------------新闻结束-------------------- */

/* -------------------网站尾部右侧图片样式-------------------- */

 .image-block {
            display: inline-block;   /* 容器尺寸完全贴合图片 */
            line-height: 0;          /* 消除图片下方空隙 */
            background: none;
            border: none;
            outline: none;
            box-shadow: none;
        }

        /* 图片本身 */
        .image-block img {
            display: block;          /* 去除多余间距 */
            max-width: 100%;         /* 响应式，不超出屏幕 */
            height: auto;
            border: none;
            outline: none;
            background: none;
            transition: filter 0.3s ease;
            /* 初始饱和度设得稍低，让鲜艳变化更明显 */
            filter: saturate(0.75);  
            /* 你也可以尝试用 brightness(1.02) contrast(1.02) 但只用saturate最直接 */
        }

        /* 悬停时 —— 颜色变得极其艳丽 */
        .image-block:hover img {
            filter: saturate(2.5);    /* 饱和度大幅度提高，颜色非常浓艳 */
            /* 如果需要更夸张可以调至 3.0 或更高，但 2.5 已经足够艳丽 */
        }



/* -------------------网站尾部右侧图片样式结束-------------------- */

/* -------------------友链图片默认样式开始-------------------- */

 /* 友链图片默认样式 */
        .links {
            display: block;      /* 消除图片下方间隙 */
            border: 0;
            transition: all 0.2s ease;   /* 平滑过渡 */
        }

        /* 鼠标悬停时：放大4像素 (宽高各增加8px，通过scale模拟) */
        .links:hover {
            transform: scale(1.07143, 1.20513);  /* 112→120, 39→47 */
        }

/* -------------------友链图片默认样式结束-------------------- */




 /* -------------------首页图片切换-------------------- */
    /* 图片容器：严格 200x356 像素，无任何圆角，只有硬边 */
        .swap-box {
            width: 280px;
            height: 498px;                  /* 固定像素，完全符合要求 */
            background-color: #ffffff;       /* 后备底色 */
            box-shadow: 0 20px 30px -8px rgba(0,0,0,0.7); /* 立体感，不干扰矩形 */
            position: relative;
            overflow: hidden;                /* 切换时只显示一张图 */
            border: none;                    /* 无边框，无圆角 */
            border-radius: 0;                 /* 明确禁止圆角 */
            outline: none;
        }

        /* 两张图片完全一致：绝对定位、撑满容器、无圆角 */
        .swap-box img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;                /* 覆盖200x356，保持比例裁剪（如需完全填充可用cover） */
            object-position: center;           /* 居中显示主体 */
            border-radius: 0;                  /* 强制无圆角 */
            opacity: 0;                         /* 默认隐藏，动画控制可见性 */
            transition: opacity 1.8s ease;      /* 淡变过渡约1.8秒，8秒周期内很舒服 */
            pointer-events: none;                /* 图片不阻挡交互 */
            border: none;
            outline: none;
        }

        /* 第一张图片动画：8秒无限循环，前半周期显示，后半隐藏 */
        .img-a {
            animation: fadeFirst 15s infinite;
        }

        /* 第二张图片动画：与第一张完全错开，后半周期显示 */
        .img-b {
            animation: fadeSecond 15s infinite;
        }

        /* 第一张关键帧： 0% → 45% 可见 → 45%~55%淡出 → 之后隐藏 */
        @keyframes fadeFirst {
            0% { opacity: 1; }               /* 一开始就显示 */
            40% { opacity: 1; }               /* 保持显示到40% (约3.2秒) */
            50% { opacity: 0; }               /* 4秒时完全透明 (淡变从40%~50%完成) */
            55% { opacity: 0; }                /* 继续隐藏 */
            100% { opacity: 0; }               /* 直到周期结束 */
        }

        /* 第二张关键帧：与第一张相反 0%→50%隐藏 50%→60%淡入 然后显示到结束 */
        @keyframes fadeSecond {
            0% { opacity: 0; }                /* 一开始隐藏 */
            45% { opacity: 0; }                /* 保持隐藏到45% (约3.6秒) */
            55% { opacity: 1; }                /* 55%时完全可见 (淡变从45%~55%) */
            95% { opacity: 1; }                 /* 一直显示到95% (约7.6秒) */
            100% { opacity: 0; }                /* 周期最后瞬间淡出，准备下一轮 (很短暂) */
        }

        /* 极简计时角标：无圆角直角风格，仅作提示 */
        .info-tag {
            position: absolute;
            bottom: 8px;
            right: 10px;
            background: rgba(10, 20, 28, 0.8);
            color: #bcd3e0;
            padding: 4px 10px;
            font-size: 13px;
            line-height: 1;
            border: none;
            border-radius: 0;                  /* 无圆角 */
            letter-spacing: 0.3px;
            z-index: 10;
            backdrop-filter: blur(2px);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.15); /* 极细直角边框，不破坏无圆角 */
            pointer-events: none;
        }

        /* 可选额外提示：尺寸标注，同样直角 */
        .dimension-tag {
            position: absolute;
            top: 8px;
            left: 10px;
            background: rgba(0, 0, 0, 0.5);
            color: #ccddee;
            padding: 4px 8px;
            font-size: 12px;
            border: none;
            border-radius: 0;
            z-index: 10;
            pointer-events: none;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 0;
        }




 /* -------------------首页图片切换结束-------------------- */








.issue-item {
    padding: 5px 0;
    border-bottom: 1px dashed #eaeaea;
}


.gkml-item {
    padding: 8px 0px 10px 0px;
    border-bottom: 1px dashed  #6a91cc;
	
}
.issue-item:last-child {
    border-bottom: none;
}

.friend-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.friend-links a {
    background-color: #f0f5ff;
    color: #0042a8;
    padding: 6px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    transition: background-color 0.3s;
}

.friend-links a:hover {
    background-color: #e0ebff;
}

.category-list {
    list-style: none;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eaeaea;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #444;
    text-decoration: none;
    display: block;
    padding: 4px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.category-list a:hover {
    background-color: #f0f5ff;
    color: #0042a8;
}
.zy {
            display: -webkit-box;           /* 使用旧版弹性盒子布局（WebKit浏览器） */
            -webkit-box-orient: vertical;    /* 设置框的方向为垂直 */
            -webkit-line-clamp: 4;           /* 限制显示的行数为2行 */
            overflow: hidden;               /* 隐藏超出部分 */
            text-overflow: ellipsis;        /* 文本溢出时显示省略号 */
            width: 590px;                   /* 设置宽度为800px */
            max-width: 100%;                /* 最大宽度为100% */
            line-height: 1.7;               /* 设置行高 */
            font-size: 13px;                /* 设置字体大小 */
			color: #666666;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}
.qkjj {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 56;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 590px;
    max-width: 100%;
    line-height: 1.8;
    font-size: 15px;
    padding: 0;
    margin: 0 0 5px 6px;
    color: #666666;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    font-size: 14px;
}


.qkjj a {
    text-decoration: none; /* 移除所有下划线 */
    color: #1d47a3; /* 点击时颜色 */
}

.qkjj a:hover {
    color: #E63946; /* 鼠标悬停颜色 */
    transform: translateX(2px); /* 向上移动2像素 */
    display: inline-block;
    text-decoration: none; /* 确保悬停时也没有下划线 */
}

.qkjj a:active {
    color: #E63946; /* 点击时颜色 */
    text-decoration: none; /* 确保点击时也没有下划线 */
}

.qkjj a:focus {
    color: #E63946; /* 获得焦点时颜色 */
    outline-offset: 2px;
    text-decoration: none; /* 确保获得焦点时也没有下划线 */
}







		
		
.gkml-link {
    color: #1d47a3;
    font-size: 14px;
    line-height: 18px;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    text-decoration: none;
    
    /* 确保正确的对齐方式 */
    display: inline-block;
    vertical-align: middle;
    
    /* 添加平滑过渡效果 */
    transition: all 0.2s ease;
    
    /* 确保链接不会换行 */
    white-space: nowrap;
    max-width: 100%;
}

.gkml-link:hover {
    color: #E63946;
    
    /* 向右移动2像素 */
    transform: translateX(2px);
    
    /* 保持对齐方式一致 */
    display: inline-block;
    vertical-align: middle;
}

.gkml-link:active,
.gkml-link:focus {
    color: #E63946; /* 点击时颜色 */
}
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
        
.pdf-down {
    transition: filter 0.3s ease, transform 0.3s ease !important;
    display: inline-block; /* 确保transform能正常工作 */
}

.pdf-down:hover {
    filter: brightness(1.3);
    transform: scale(1.9) !important; /* 使用更明显的放大值 */
}
	
.Showpdf-down {
    transition: filter 0.3s ease, transform 0.3s ease !important;
    display: inline-block; /* 确保transform能正常工作 */
}

.Showpdf-down:hover {
    filter: brightness(1.3);
    transform: scale(1.3) !important; /* 使用更明显的放大值 */
}
		
		
			
.by {
    transition: filter 0.3s ease, transform 0.3s ease !important;
    display: inline-block; /* 确保transform能正常工作 */
}

.by:hover {
    filter: brightness(1.3);
    transform: scale(1.7) !important; /* 使用更明显的放大值 */
}
			
			
.doi {
    transition: filter 0.3s ease, transform 0.3s ease !important;
    display: inline-block; /* 确保transform能正常工作 */
}

.doi:hover {
    filter: brightness(1.3);
    transform: scale(1.7) !important; /* 使用更明显的放大值 */
}
			
.index_doi {  
            color: #1d47a3; /* 默认颜色 */
            font-size:10pt; 
            line-height: 18px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
            text-decoration: none; /* 确保访问后无下划线 */
            transition: color 0.3s ease, transform 0.2s ease;
            
}        
        .index_doi:hover {
            color: #E63946; /* 鼠标悬停颜色 */
         
			/*  transform: scale(1.1)放大1.1倍*/
			  transform: translateX(2px); /*Y轴移动*/
            /*transform: translateY(-2px); /* X轴移动*/
	display: inline-block;
        }
        
        .index_doi:active {
            color: #E63946; /* 点击时颜色 */
		
        }
        
        .index_doi:focus {
            color: #E63946; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
        
.journal_name {  
            color: #1d47a3; /* 默认颜色 */
            font-size:12px; 
            line-height: 14px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
            text-decoration: none; /* 确保访问后无下划线 */
            transition: color 0.3s ease, transform 0.2s ease;
            
}        


        .journal_name:hover {
            color: #E63946; /* 鼠标悬停颜色 */
         
			/*  transform: scale(1.1)放大1.1倍*/
			/*   transform: translateX(2px); /*Y轴移动*/
           transform: translateY(-2px); /* X轴移动*/
	display: inline-block;
        }
        
        .journal_name:active {
            color: #E63946; /* 点击时颜色 */
		
        }
        
        .journal_name:focus {
            color: #E63946; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
        		
        .journal_text{
            color: #1d47a3; /* 默认颜色 */
            font-size:12px; 
            line-height: 14px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
            text-decoration: none; /* 确保访问后无下划线 */
        }
        		
		
		
		
		
		
		
.more-link {  
    color: #ffffff; /* 默认颜色 */
    font-size: 13px; 
    line-height: 23px;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    text-decoration: none; /* 确保访问后无下划线 */
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block; /* 添加这个以便transform效果正常工作 */
}

/* 鼠标悬停时整个链接的效果 */
.more-link:hover {
    color: #FF0000; /* 鼠标悬停颜色 - 作用于整个链接，包括中文和英文 */
    transform: translateY(-2px); /* Y轴移动 */
}

/* 确保英文部分继承链接的悬停颜色 */
.more-link:hover .en-spen {
    color: inherit; /* 继承父元素的颜色 */
    /* 移除这里的transform，让整个链接一起移动 */
    display: inline-block;
}

.more-link:active {
    color: #ffffff; /* 点击时颜色 - 作用于整个链接 */
}

.more-link:focus {
    color: #ffffff; /* 获得焦点时颜色 - 作用于整个链接 */
    outline-offset: 2px;
}

.en-spen {
    font-family: Arial, sans-serif;  /* 英文字体 */
    font-weight: normal; /* 字体粗细 */
}	

        
        .title {
            text-align: center;
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 18px;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            padding-bottom: 8px;
            border-bottom: 2px solid #3498db;
        }
        
		
		
		
   
        .container {
            width: 275px;
            height: 450px;
            padding: 0px;
            position: relative;
            overflow: hidden;
        }
		
		
		
        .free-layout {
            position: relative;
            height: 290px;
        }
        
        .category {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            padding: 6px 12px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            white-space: nowrap;
            position: absolute;
            margin: 4px;
        }
        
        .category:hover {
            transform: scale(1.3);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .category a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }
        .fl{ margin-left:0px; margin-top:20px;}
        /* 定位每个栏目的具体位置 */
        .cat1 { top: 0px; left: 25px; background: linear-gradient(45deg, #FF5252, #B71C1C); height:30px;}
        .cat2 { top: 0px; left: 135px; background: linear-gradient(45deg, #FF9800, #E65100);height:30px; }
        .cat3 { top: 40px; left: 75px; background: linear-gradient(45deg, #4CAF50, #1B5E20);height:32px; width:100px; } /* 經濟與管理向左调整 */
        .cat4 { top: 85px; left: 25px; background: linear-gradient(45deg, #2196F3, #0D47A1);height:34px; }
        .cat5 { top: 128px; left: 110px; background: linear-gradient(45deg, #9C27B0, #4A148C); height:36px;width:120px; } /* 教育學與心理學 */
        .cat6 { top: 175px; left: 30px; background: linear-gradient(45deg, #00BCD4, #006064);height:38px; }
        .cat7 { top: 220px; left: 110px; background: linear-gradient(45deg, #E91E63, #880E4F);height:38px; }
        .cat8 { top: 270px; left: 30px; background: linear-gradient(45deg, #3F51B5, #1A237E);height:42px;width:150px; }
        .cat9 { top: 325px; left: 70px; background: linear-gradient(45deg, #795548, #3E2723);height:42px; width:165px;}
        .cat10 { top: 380px; left:40px; background: linear-gradient(45deg, #990033, #FF0000);height:42px; width:165px;}
		
        .footer {
            text-align: center;
            margin-top: 15px;
            color: #7f8c8d;
            font-size: 12px;
        }
        .pdf-button {
            color: #0149b8;
            padding: 2px 4px;
            border-radius: 4px;
            font-weight: 600;
            background: linear-gradient(135deg, #3498db 0%, #3498db 50%);
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
			text-decoration: none; /* 确保访问后无下划线 */
            font-size: 9px;
			font-family:宋体;
			    border: 1px solid #ddd;
    border-radius: 4px;

			
        }
         .pdf-button a {
           color:#FFFFFF;
			text-decoration: none; /* 确保访问后无下划线 */
            font-size:12px;
        }
		
        .pdf-button:hover {
            background: #0149b8;
			text-decoration: none; /* 确保访问后无下划线 */
            color: #ffffff; /* 点击时颜色 */

        }
        
        
        .pdf-button:active {
            color: #E63946; /* 点击时颜色 */
        }
		
        .xiaopdf-button {
            color: #0149b8;
            padding: 4px 4px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
			text-decoration: none; /* 确保访问后无下划线 */
            font-size: 9px;
             font-family: 幼圆, "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
			    border: 1px solid #ddd;
    border-radius: 4px;

			
        }
         .xiaopdf-button a {
           color:#FFFFFF;
			text-decoration: none; /* 确保访问后无下划线 */
            font-size:12px;
        }
		
        .xiaopdf-button:hover {
            background: #0149b8;
			text-decoration: none; /* 确保访问后无下划线 */
            color: #ffffff; /* 点击时颜色 */

        }
        
        
        .xiaopdf-button:active {
            color: #E63946; /* 点击时颜色 */
        }		
		
		
		
		
		
        
    /* 导航 */
.Menu {
            background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(1,72,178,0.2));
            color: #0149b8;
            padding: 5px 20px;
           border-radius: 4px 4px 4px 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
			text-decoration: none; /* 确保访问后无下划线 */
			margin-right:10px;
			margin-bottom:8px;
			font-size:14px;
			 line-height: 1.3; /* 添加上一行 */
        }
         .Menu a {
           color:#FFFFFF;
			text-decoration: none; /* 确保访问后无下划线 */
line-height: 12px; */
        }
		
        .Menu:hover {
      transform: translateY(-3px);
background: linear-gradient(145deg, rgba(1,72,178,0.2),rgba(255,255,255,0.2) );


        }
        
        
        .Menu:active {
            color: #E63946; /* 点击时颜色 */
        }
        
        .Menu:focus {
            color: #E63946; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
	
.en-font {
  font-family: Arial, sans-serif;  /* 英文字体 */
  font-size: 12px;                  /* 字体大小 */
  font-weight: normal;               /* 字体粗细 */
  color: #ffffff;                    /* 字体颜色 */
  /* 添加其他你需要的样式 */
}	
	
	
		
/* NewsClass.asp 搜索样式----------*/

  .search-container {
            width: 600px;
            position: relative;
            margin-bottom: 20px;
			margin-top: 10px;
        }
        
        .search-box {
            width: 100%;
            height: 44px;
            padding: 10px 60px 10px 16px;
            font-size: 16px;
            border: 2px solid #0042a8;
            border-radius: 10px;
            outline: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .search-box:focus {
            box-shadow: 0 2px 12px rgba(51, 136, 255, 0.3);
        }
        
        .search-btn {
            position: absolute;
            right: 0;
            top: 0;
            height: 44px;
            width: 50px;
            background: #0042a8 url('search.png') no-repeat center center;
            background-size: 22px 22px;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .search-btn:hover {
            background-color: #2a78e4;
        }
        
        .search-btn:active {
            background-color: #1f68cc;
        }
        
 
        
        @media (max-width: 576px) {
            .search-container {
                width: 90%;
            }
        }




/* 结束asp 搜索样式----------*/

.qqsf_sotxt{
 font-size:14px; 
 color: #000066;
 font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}	
		
		.lmbt{
	FONT-SIZE: 17px; 
	padding-left:0px; 
	color:#1d47a3; 
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
	font-weight:600;
	 /* 投影效果 */

	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.01);
	}		
		
.qqsf_link {  
            color: #1d47a3; /* 默认颜色 */
            font-size: 17px; 
            line-height: 23px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
            text-decoration: none; /* 确保访问后无下划线 */
            transition: color 0.3s ease, transform 0.2s ease;
            
}        
        .qqsf_link:hover {
            color: #E63946; /* 鼠标悬停颜色 */
         
			/*  transform: scale(1.1)放大1.1倍*/
			transform: translateY(-5px);/* Y轴移动*/
             /* transform: translateX(5px); /* X轴移动*/
	display: inline-block;
        }
        
        .qqsf_link:active {
            color: E63946; /* 点击时颜色 */
		
        }
        
        .qqsf_link:focus {
            color: E63946; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
        
  

 /* 两行文本截断的核心样式 */
        .qqsf_zy{
            display: -webkit-box;           /* 使用旧版弹性盒子布局（WebKit浏览器） */
            -webkit-box-orient: vertical;    /* 设置框的方向为垂直 */
            -webkit-line-clamp: 4;           /* 限制显示的行数为2行 */
            overflow: hidden;               /* 隐藏超出部分 */
            text-overflow: ellipsis;        /* 文本溢出时显示省略号 */
            width: 850px;                   /* 设置宽度为800px */
            max-width: 100%;                /* 最大宽度为100% */
            line-height: 1.7;               /* 设置行高 */
            font-size: 14px;                /* 设置字体大小 */
            padding-top: 3px ;                  /* 添加内边距 */
			 padding-bottom: 3px ;                  /* 添加内边距 */

             border-bottom: 1px dashed  #CCCCCC;     /*   添加边框 */
            /* border-radius: 6px;             /* 添加圆角 */
            margin: 0px 0;                 /* 添加上下外边距 */
			color: #777777;
			margin-left:6px;
			margin-bottom:5px;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
        }
		
		
		  .superscript {
            vertical-align: super;
            font-size: 0.7em;
			font-family:幼圆;
			
        }
		  .superscript1 {
            vertical-align: super;
            font-size: 0.7em;
        }
<!--------------------------------------->
        .footlink {
            font-size: 13px !important;
            line-height: 1.2;
font-family: 'Microsoft YaHei', 'SimSun', sans-serif;

        }
        a.footlink {
		            font-size: 13px !important;

            display: inline-block;
            text-decoration: none;
            color: #1c44a2;
            line-height: 1.5;
            transition: all 0.2s ease;
            padding-top: 0px;
        }

        a.footlink:hover {
            color: #E63946;
            transform: translateY(-3px);
            text-decoration: none;
        }

        a.footlink:active {
            color: #E63946;
            text-decoration: none;
        }

        a.footlink:focus {
            color: #1c44a2;
            outline-offset: 2px;
            text-decoration: none;
        }

    .copyright {
            text-align: center;
            color: #000000;
            font-size: 13px;
	    line-height:30px;
		 
        }
		.foottext{
		font-size:12px;
		color:#000000;}

		
        .newsclass-etitle{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 800px;
    font-size: 13px;
    
    /* iOS特定修复 */
    -webkit-text-size-adjust: 100%;
    
    /* 移除冲突的多行截断属性 */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
        }
				

.journal-body {
    padding:20px 20px;
    min-height: 300px; /* 设置最小高度 */
}
.journal-body li {
	margin-left:18px;
}
		

.etitle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 550px;
    font-size: 14px;
    
    /* iOS特定修复 */
    -webkit-text-size-adjust: 100%;
    
    /* 移除冲突的多行截断属性 */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
}

.etitle-link {
    color: #5d91d1;
    font-size: 14px;
    line-height: 1.5;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    text-decoration: none;
    
    /* 确保正确的对齐方式 */
    display: inline-block;
    vertical-align: middle;
    
    /* 添加平滑过渡效果 */
    transition: all 0.2s ease;
    
    /* 确保链接不会换行 */
    white-space: nowrap;
    max-width: 100%;
}

.etitle-link:hover {
    color: #E63946;
    
    /* 向右移动2像素 */
    transform: translateX(2px);
    
    /* 保持对齐方式一致 */
    display: inline-block;
    vertical-align: middle;
}

.etitle-link:active,
.etitle-link:focus {
    color: #E63946; /* 点击时颜色 */
}
.links-body {

    padding: 0px 20px 10px 20px;
    height: 100%;
    min-height: 0;  /* 防止flex溢出 */
    display: flex;
    flex-direction: column;
    flex: 1;
}
.intitle { 
    color: #666666;

    max-width: 420px;        /* 限制最大宽度为50px */
    overflow: hidden;       /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 用省略号表示溢出文本 */
    white-space: nowrap;    /* 强制文本在一行内显示 */
    display: inline-block;  /* 转换为内联块元素，保留内联特性但可以设置宽高 */
    /* 或者使用 display: block; 如果希望独占一行 */
 font-size:13px;
     line-height: 16px;      /* 行高与高度一致，实现文字垂直居中 */ 

}
.index_intitle { 

    color: #666666;
    max-width: 300px;        /* 限制最大宽度为50px */
    overflow: hidden;       /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 用省略号表示溢出文本 */
    white-space: nowrap;    /* 强制文本在一行内显示 */
    display: inline-block;  /* 转换为内联块元素，保留内联特性但可以设置宽高 */
    /* 或者使用 display: block; 如果希望独占一行 */
 font-size:13px;
     line-height: 16px;      /* 行高与高度一致，实现文字垂直居中 */ 

}


<!-----news_so---->		


        .news-so-container {
            width: 850px;
            max-width: 850px;
            padding: 30px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(30, 85, 185, 0.12);
            margin-bottom: 40px;
        }
        
        .news-so-title {
            color: #1e55b9;
            font-size: 28px;
            text-align: center;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .news-so-subtitle {
            color: #5a7cb9;
            text-align: center;
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.5;
			
        }
        
        .news-so-search-wrapper {
            position: relative;
            width: 850px;
			
			margin-top:10px;
			margin-bottom:30px;
			padding-left:15px;
        }
        
        .news-so-search-box {
            display: flex;
            align-items: center;
            background: linear-gradient(to right, #f8fbff, #f0f7ff);
            border-radius: 16px;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(30, 85, 185, 0.1);
		transition: all 0.3s ease;
            border: 2px solid #d6e4ff;
        }
        
        .news-so-search-box:focus-within {
            border-color: #a1c1ff;
            box-shadow: 0 10px 30px rgba(30, 85, 185, 0.25);
            transform: translateY(-2px);
        }
        
        .news-so-search-icon {
            padding: 0 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 为qwlogo.png设置独立样式 */
        .news-so-search-icon img[src="img/qwlogo.png"] {
            width: 70px;  /* 单独设置大小 */
            height:35px; /* 单独设置大小 */
            object-fit: contain;
            /* 无滤镜 - 显示图片原色 */
        }
        
        .news-so-textarea-wrapper {
            flex: 1;
            position: relative;
        }
        
        .news-so-search-textarea {
            width: 100%;
            min-height: 70px;
            padding: 22px 20px;
            font-size: 20px;
            color: #1e3a8a;
            border: none;
            background-color: transparent;
            resize: none;
            outline: none;
            line-height: 1.4;
            overflow: hidden;
			font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;

        }
        
        .news-so-placeholder {
            position: absolute;
            top: 15px;
            left: 100px;
            color: #7a9ad6;
            font-size: 16px;
            pointer-events: none;
            line-height: 1.4;
            transition: all 0.2s ease;
			 text-align: center;
        }
        
        .news-so-search-textarea:focus + .news-so-placeholder,
        .news-so-search-textarea:not(:empty) + .news-so-placeholder {
            opacity: 0;
            visibility: hidden;
        }
        
        .news-so-search-button {
            background: linear-gradient(135deg, #3b82f6, #1e55b9);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 10px 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 10px 10px;
            box-shadow: 0 5px 15px rgba(30, 85, 185, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .news-so-search-button:hover {
            background: linear-gradient(135deg, #1e55b9, #0d3b8c);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 85, 185, 0.4);
        }
        
        .news-so-search-button:active {
            transform: translateY(1px);
            box-shadow: 0 3px 10px rgba(30, 85, 185, 0.3);
        }
        
        .news-so-button-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 为search_icon.png设置独立样式 */
        .news-so-button-icon img[src="img/search_icon.png"] {
            width: 22px;  /* 单独设置大小 */
            height: 22px; /* 单独设置大小 */
            object-fit: contain;
            /* 无滤镜 - 显示图片原色 */
        }
        
        .news-so-examples {
            margin-top: 25px;
            padding: 20px;
            background-color: #f0f7ff;
            border-radius: 12px;
            border-left: 5px solid #4a7fe4;
        }
        
        .news-so-examples-title {
            color: #1e55b9;
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .news-so-examples-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .news-so-example {
            background-color: white;
            padding: 10px 18px;
            border-radius: 10px;
            color: #3b82f6;
            font-size: 15px;
            border: 1px solid #d6e4ff;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        
        .news-so-example:hover {
            background-color: #e8f0ff;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(30, 85, 185, 0.1);
        }
        
        .news-so-features {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .news-so-feature {
            flex: 1;
            min-width: 250px;
            background-color: #f8fbff;
            padding: 20px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid #e1ecff;
        }
        
        .news-so-feature-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .news-so-feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* 无滤镜 - 显示图片原色 */
        }
        
        .news-so-feature-text h3 {
            color: #1e55b9;
            margin-bottom: 5px;
			 font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;

        }
        
        .news-so-feature-text p {
            color: #5a7cb9;
            font-size: 14px;
            line-height: 1.5;

        }
        
        .news-so-results {
            margin-top: 30px;
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e1ecff;
            display: none;
        }
        
        .news-so-results.visible {
            display: block;
        }
        
        .news-so-results-title {
            color: #1e55b9;
            font-size: 20px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e1ecff;
        }
        
        /* 清除了搜索结果项目样式，现在只保留空容器 */
        
        @media (max-width: 768px) {
            .news-so-search-box {
                flex-direction: column;
                padding: 15px;
            }
            
            .news-so-search-button {
                width: 100%;
                margin: 15px 0 0 0;
            }
            
            .news-so-features {
                flex-direction: column;
            }
        }
        
        .news-so-footer {
            color: #5a7cb9;
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
        }




/* 简洁浅蓝色卡片样式 - 完全符合要求 */
        .news-so-container-foot {
            width: 100%;
            max-width: 950px;
            margin: 60px auto 0;
            border-radius: 8px;
            border: 1px solid #e1ecff;
            padding: 0px;
        }
        
        .news-so-inner-foot {
            width: 100%;
            border-radius: 6px;
            padding: 2px;
        }
        
        .news-so-header-foot {
            height: 40px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color:#f4f8fe;
            color: #2a499c;
            font-size: 15px;
            padding: 0 15px;
        }
        
        .news-so-number-foot {
            color: #ff3366;
            font-weight: bold;
            font-family: 'Microsoft YaHei', sans-serif;
            font-size: 15px;
            margin: 0 5px;
        }
        
        /* 响应式设计 */
        @media (max-width: 620px) {
            .news-so-container-foot {
                margin: 40px auto 0;
                width: 95%;
            }
            
            .news-so-header-foot {
                font-size: 14px;
                height: 36px;
            }
        }
		
		
 /* 声明容器：居中+内边距+轻微质感（通用样式） */
        .statement-container {
            width: 100%;
            max-width: 1000px;
            padding: 28px;
            background-color: #f9fafb;
            border-radius: 12px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
            font-family: "Microsoft YaHei", "PingFang SC", "Arial", sans-serif;
            color: #333;
            line-height: 1.8;
        }
        /* 声明标题基础样式：加粗+深灰+间距（通用） */
        .statement-title {
            font-size: 16px;
            font-weight: 1000;
            color: #212529;
            margin-bottom: 10px;
            padding-left: 8px; /* 左侧小竖线，增强标题层次 */
            border-left: 3px solid transparent; /* 初始透明，后续按容器区分 */
        }
        /* 第一个容器（论文收录/作者贡献/同行评审）标题竖条颜色 */
        .statement-container:first-of-type .statement-title {
            border-left-color: #198754; /* 绿色，区分第一个容器 */
			color:#196754;
        }
        /* 第二个容器（利益冲突/版权声明）标题竖条颜色 */
        .statement-container:last-of-type .statement-title {
            border-left-color: #dc633c; /* 蓝色，区分第二个容器 */
			color:#b9441e;
        }
        /* 声明内容样式：浅深灰+行高优化 */
        .statement-content {
            font-size: 14px;
            color: #495057;
            margin-bottom: 24px;
        }
        /* 中英文双语样式优化：英文浅灰+略小字号 */
        .statement-content .en-text {
            display: block; /* 英文单独分行 */
            color: #6c757d;
            font-size: 13px;
            margin-top: 4px;
            font-style: italic; /* 英文斜体，区分中英文 */
        }
        /* 最后一个声明去掉底部间距 */
        .statement-item:last-child .statement-content {
            margin-bottom: 0;
        }
        /* 链接样式优化：蓝色+hover效果+右移动画 */
        .statement-content a {
            color: #1d47a3;
            text-decoration: none;
            /* 新增：动画过渡，让位移更顺滑 */
            transition: all 0.2s ease;
            /* 新增：确保位移不影响整体布局 */
            display: inline-block;
        }
        .statement-content a:hover {
            color: #E63946;
            /* 核心：鼠标悬浮向右移2px */
            transform: translateX(2px);
        }
		
		
        /* 声明内容样式：浅深灰+行高优化 */
        .statement-contents {
            font-size: 14px;
            color: #495057;

        }
        /* 中英文双语样式优化：英文浅灰+略小字号 */
        .statement-contents .en-text {
            display: block; /* 英文单独分行 */
            color: #6c757d;
            font-size: 13px;
            font-style: italic; /* 英文斜体，区分中英文 */
			           
        }		
        .statement-contents a {
            color: #1d47a3;
            text-decoration: none;
            /* 新增：动画过渡，让位移更顺滑 */
            transition: all 0.2s ease;
            /* 新增：确保位移不影响整体布局 */
            display: inline-block;
        }
        .statement-contents a:hover {
            color: #E63946;
            /* 核心：鼠标悬浮向右移2px */
            transform: translateX(2px);
        }
		
		
/*doi最新更新------------------------------------------ */		
		
		
		
		
		
		        /* 外层容器：控制整体垂直居中 */
        .doi-container {
            display: flex;
            align-items: center;
        }

        /* DOI灰色背景条（高度为圆形的80%） */
        .doi-badge {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border-radius: 0px;
            height: 22px; /* 你调整后的高度 */
            padding-right: 10px;
            box-sizing: border-box;
            font-family:  sans-serif,Arial;
            width: fit-content;
            /* 核心：添加灰色基础投影（x偏移|y偏移|模糊半径|颜色） */
             /*  box-shadow: 0 2px 4px rgba(100, 100, 100, 0.3); /* 浅灰色投影，不突兀 */
             /*  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* 投影+缩放过渡 */
			width:200px;

        }

        /* 黄色圆形DOI图标（新增灰色基础投影 + 悬浮放大） */
        .doi-icon {
            display: flex;
            align-items: center; /* 垂直居中 */
            padding-left: 1px; /* 你调整的左内边距 */
            padding-bottom: 1px; /* 你调整的下内边距 */
            width: 25px;
            height: 25px;
            background-color: #fcb425; /* 黄色底色 */
            border-radius: 50%;
            color: #000; /* 基础色为黑色（d的颜色） */
            font-size: 15px;
            font-weight: 900;
            margin-right: 12px;
            flex-shrink: 0;
            box-sizing: border-box;
            letter-spacing: -1px; /* 文字紧凑 */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* 投影+缩放过渡 */
            position: relative;
            z-index: 1;
            /* 核心：添加灰色基础投影（x偏移|y偏移|模糊半径|颜色） */
            box-shadow: 0 2px 4px rgba(100, 100, 100, 0.3); /* 浅灰色投影，不突兀 */
        }

        /* 圆形悬浮放大+投影增强 */
        .doi-icon:hover {
            transform: scale(1.1); /* 放大1.1倍 */
            /* 悬浮时投影加深/变大，增强层次感 */
            box-shadow: 0 4px 8px rgba(80, 80, 80, 0.4);
        }

        /* DOI编号文字容器 */
        .doi-number {
            margin-left: -8px;
			font-size:13px;
			
        }

        /* DOI链接样式 */
        .doi-number a {
            color: #ffffff; /* 默认白色 */
            font-size: 13px  !important;
            letter-spacing: 0.5px;
            text-decoration: none; /* 去掉默认下划线 */
            transition: color 0.2s ease-in-out; /* 颜色过渡 */
			
        }

        /* 鼠标悬浮链接变红 */
        .doi-number a:hover {
            color: #2a499d; /* 纯红色 */
        }



		
		        /* 外层容器：控制整体垂直居中 */
        .doi-container1 {
            display: flex;
            align-items: center;
        }

        /* DOI灰色背景条（高度为圆形的80%） */
        .doi-badge1 {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border-radius: 0px ;
            height: 18px; /* 你调整后的高度 */
            padding-right: 6px;
            box-sizing: border-box;
            font-family:  sans-serif,Arial;
            width:200px;
            /* 核心：添加灰色基础投影（x偏移|y偏移|模糊半径|颜色） */
             /*  box-shadow: 0 2px 4px rgba(100, 100, 100, 0.3); /* 浅灰色投影，不突兀 */
             /*  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* 投影+缩放过渡 */
        }

        /* 黄色圆形DOI图标（新增灰色基础投影 + 悬浮放大） */
        .doi-icon1 {
            display: flex;
            align-items: center; /* 垂直居中 */
            padding-left: 1px; /* 你调整的左内边距 */
            padding-bottom: 1px; /* 你调整的下内边距 */
            width: 22px;
            height: 22px;
            background-color: #fcb425; /* 黄色底色 */
            border-radius: 50%;
            color: #000; /* 基础色为黑色（d的颜色） */
            font-size: 12px;
            font-weight: 900;
            margin-right: 12px;
            flex-shrink: 0;
            box-sizing: border-box;
            letter-spacing: -1px; /* 文字紧凑 */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* 投影+缩放过渡 */
            position: relative;
            z-index: 1;
            /* 核心：添加灰色基础投影（x偏移|y偏移|模糊半径|颜色） */
            box-shadow: 0 2px 4px rgba(100, 100, 100, 0.3); /* 浅灰色投影，不突兀 */
        }

        /* 圆形悬浮放大+投影增强 */
        .doi-icon1:hover {
            transform: scale(1.1); /* 放大1.1倍 */
            /* 悬浮时投影加深/变大，增强层次感 */
            box-shadow: 0 4px 8px rgba(80, 80, 80, 0.4);
        }

        /* DOI编号文字容器 */
        .doi-number1 {
            margin-left: -8px;
			font-size:12px;
			
        }

        /* DOI链接样式 */
        .doi-number1 a {
            color: #ffffff; /* 默认白色 */
            font-size: 12px  !important;
            letter-spacing: 0.5px;
            text-decoration: none; /* 去掉默认下划线 */
            transition: color 0.2s ease-in-out; /* 颜色过渡 */
			
        }

        /* 鼠标悬浮链接变红 */
        .doi-number1 a:hover {
            color: #2a499d; /* 纯红色 */
        }
/*在线投稿通用文字样式----------------------------------------- */		

        /*  */
/* 在线投稿通用文字样式 - 极致贴近版 */
.submission-en {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0px; /* 彻底取消下外边距，两行完全贴紧 */
    opacity: 0.9;
    line-height: 1; /* 行高设为1，取消文字自身的垂直空隙 */
    padding: 0; /* 确保无额外内边距 */
	margin-top:3px;
	line-height:14px;
}
.submission-cn {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 1.7; /* 行高设为1，进一步压缩垂直空间 */
    padding: 0; /* 确保无额外内边距 */
	margin-bottom:3px;
	line-height:16px;
	letter-spacing:0.8px;
}

/* 通用长条按钮基础样式（宽度200px） */
.submission-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* 垂直居中文字，适配40px高度 */
    width: 180px; /* 固定宽度200px */
    padding: 5px 5px; /* 小padding */
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    gap: 0px; /* flex布局下子元素的间距设为0（关键补充） */
}

/* 6. 青柠绿（活力系） */
        /* 5. 葡萄紫（高雅系） */
        
		 /*在线投稿导航*/
/* 外层容器：整体水平居中 + 背景色保留 */
.new-menu-container {
    width: 200px;
    max-width: 200px;
    padding: 0px 0;
    flex-wrap: nowrap;
    margin: 0 auto !important; /* 容器自身水平居中（关键） */
    display: flex;             /* 让内部ul居中 */
    justify-content: center;   /* 水平居中ul */
    align-items: center;       /* 垂直居中ul */
}

/* 列表容器：居中 + 背景色保留 */
.new-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;               /* 占满容器宽度 */
    justify-content: center;   /* 水平居中菜单项 */
    align-items: center;       /* 垂直居中菜单项 */
}

/* 菜单项：居中 + 背景色保留 */
.new-menu-item {
    display: flex;
    justify-content: center;   /* 水平居中按钮 */
    align-items: center;       /* 垂直居中按钮 */
    list-style: none;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100%;               /* 占满列表宽度 */
}

/* 核心链接样式：按钮内文字居中 + 原有效果保留 */
.new-menu-link {
    display: flex;             /* 改为flex实现文字垂直居中 */
    flex-direction: column;    /* 文字上下排列 */
    justify-content: center;   /* 垂直居中文字 */
    align-items: center;       /* 水平居中文字 */
    padding: 2px 2px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #3eb0c8;
    width: 140px;              /* 按钮宽度 */
    text-align: center;        /* 兜底：文字水平居中 */
    line-height: normal;       /* 取消行高干扰 */
	background:#3eb0c8;
	height:30px;
}

/* 背景展开效果（渐变版） */
.new-menu-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    transition: all 0.4s ease;
    z-index: -1;
}

/* hover 交互（强化效果） */
.new-menu-link:hover {
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: transparent;
	color: #3eb0c8;
}

.new-menu-link:hover:before {
    height: 100%;
}
/* 文字子样式：确保文字自身居中 */

 .en-text {
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 13px;
    opacity: 0.9;
    text-align: center;        /* 文字水平居中 */
	margin-top:0px;
  font-family: Arial, sans-serif;  /* 英文字体 */
  font-size: 11px;                  /* 字体大小 */
  font-weight: normal;               /* 字体粗细 */
	margin-top:-1px;
}
 .cn-text {
    font-size: 12px;
    display: block;
    margin-bottom: 0px;
    text-align: center;        /* 文字水平居中 */
	margin-bottom:0px;
	  margin-top:0px;

}

