* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
             font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}

body {
    background-color: #f0f4f9;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/* 新增居中容器样式 */
.main-container {
    width: 1200px;
    margin: 0 auto;
    display: block;
}

/* 新增页脚表格样式 */
.footer-table {
  width: 100%px;
  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: 0 auto;
    display: block;
}

/* 等高布局容器 */
.about-equal-height-container {
    display: flex;
    align-items: stretch; /* 确保子项等高 */
    margin-top: 6px;
}

/* 左侧固定宽度 */
.about-left-sidebar {
    width: 280px;
    flex-shrink: 0; /* 防止收缩 */
}

/* 中间内容区域 */
.about-main-content {
    flex: 1; /* 占据剩余空间 */
    margin: 0 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: 300px; /* 设置最小高度 */
}

.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;
}


/* Aboutus.asp ----------------结束-----------------------------等高样式*/

/* NewsClass.asp ---------------开始-----------------------------*/
/* NewsClass.asp 搜索样式----------*/


.gkml_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;
            
}        
        .gkml_link:hover {
            color: #E63946; /* 鼠标悬停颜色 */
         
			/*  transform: scale(1.1)放大1.1倍*/
			transform: translateY(-5px);/* 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: #333333;
 font-size:13px;
 font-style: italic 
}
 /* 两行文本截断的核心样式 */
        .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.6;               /* 设置行高 */
            font-size: 14px;                /* 设置字体大小 */
            padding-top: 3px ;                  /* 添加内边距 */
			 padding-bottom: 3px ;                  /* 添加内边距 */

             /* border-bottom: 1px dashed  #CCCCCC;     /*   添加边框 */
            /* border-radius: 6px;             /* 添加圆角 */
            background: #fff;               /* 设置背景色 */
            margin: 0px 0;                 /* 添加上下外边距 */
			color: #999999;
			margin-bottom:5px;
             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; 
		}

/* 左侧固定宽度 */
.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;
}

.card-header {
    background-color: #0042a8;
    color: white;
    padding: 8px 12px;
    font-weight: bold;
}

.card-body {
    padding:0px 5px;
}
.gkml-body {
    padding:10px 10px;
	margin-bottom:8px;
	
}

.jj-body {
    padding:10px 10px;
}


.imgbottom {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
}


.content-box {
    padding: 0px 15px;
	
    line-height: 1.8;
}


.bw-box {
    padding-left: 20px;
    padding-top: 30px;
    line-height: 1.8;
    word-wrap: break-word;
    word-break: break-all;
}



.bw-box a {
    text-decoration: none; /* 移除所有下划线 */
    color: #1d47a3; /* 点击时颜色 */
}

.bw-box a:hover {
    color: #E63946; /* 鼠标悬停颜色 */
    transform: translateY(-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; /* 确保获得焦点时也没有下划线 */
}
.issue-item {
    padding: 5px 0;
    border-bottom: 1px dashed #eaeaea;
}


.gkml-item {
    padding: 0px 0;
    border-bottom: 1px dashed #eaeaea;
}
.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;
}

.qkjj {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 13;
    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;
}

.zy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 590px;
    max-width: 100%;
    line-height: 1.7;
    font-size: 13px;
    padding: 0;
    background: #fff;
    margin: 0;
    color: #999999;
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}

.gkml-link {  
            color: #1d47a3; /* 默认颜色 */
            font-size: 15px; 
            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;
display: inline-block; /* 或者block，根据布局需要 */
max-width: 500px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}        
        .gkml-link:hover {
            color: #E63946; /* 鼠标悬停颜色 */
         
			/*  transform: scale(1.1)放大1.1倍*/
			 /* transform: translateY(0px); Y轴移动*/
            transform: translateY(-2px); /* X轴移动*/
	display: inline-block;
        }
        
        .gkml-link:active {
            color: #E63946; /* 点击时颜色 */
		
        }
        
        .gkml-link:focus {
            color: #E63946; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
        
.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: translateY(0px); Y轴移动*/
            transform: translateY(-2px); /* X轴移动*/
	display: inline-block;
        }
        
        .index_doi:active {
            color: #E63946; /* 点击时颜色 */
		
        }
        
        .index_doi:focus {
            color: #E63946; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
        
		
		
		
		
		
		
		
		
		
.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;
            
}        
        .more-link:hover {
            color: #FF0000; /* 鼠标悬停颜色 */
         
			/*  transform: scale(1.1)放大1.1倍*/
			 /* transform: translateY(0px); Y轴移动*/
            transform: translateX(5px); /* X轴移动*/
	display: inline-block;
        }
        
        .more-link:active {
            color: ffffff; /* 点击时颜色 */
		
        }
        
        .more-link:focus {
            color: ffffff; /* 获得焦点时颜色 */
            outline-offset: 2px;
        }
        

        
        .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: 490px;
            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;
            position: absolute;
            margin: 4px;
			word-break: break-all;
			
        }
        
        .category:hover {
            transform: scale(1.2);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .category a {
            color: white;
            text-decoration: none;
            font-size: 8px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
			
        }
        .fl{ margin-left:0px; margin-top:0px;}
        /* 定位每个栏目的具体位置 */
        .cat1 { top: 5px; left: 25px; background: linear-gradient(45deg, #FF5252, #B71C1C); height:30px;word-break: break-all;}
        .cat2 { top: 45px; left: 70px; background: linear-gradient(45deg, #FF9800, #E65100);height:30px;width:180px; }
        .cat3 { top: 85px; left: 19px; background: linear-gradient(45deg, #4CAF50, #1B5E20);height:32px; width:180px;  } /* 經濟與管理向左调整 */
        .cat4 { top: 125px; left: 50px; background: linear-gradient(45deg, #2196F3, #0D47A1);height:34px; }
        .cat5 { top: 168px; left: 23px; background: linear-gradient(45deg, #9C27B0, #4A148C); height:39px;width:160px;  } /* 教育學與心理學 */
        .cat6 { top: 218px; left: 70px; background: linear-gradient(45deg, #00BCD4, #006064);height:38px; width:175px; }
        .cat7 { top: 265px; left: 25px; background: linear-gradient(45deg, #E91E63, #880E4F);height:38px;width:190px;  }
        .cat8 { top: 310px; left: 50px; background: linear-gradient(45deg, #3F51B5, #1A237E);height:42px;width:190px; }
        .cat9 { top: 360px; left: 20px; background: linear-gradient(45deg, #795548, #3E2723);height:42px; width:180px; }
        .cat10 { top: 410px; left:60px; background: linear-gradient(45deg, #990033, #FF0000);height:42px; width:180px; }
		
        .footer {
            text-align: center;
            margin-top: 15px;
            color: #7f8c8d;
            font-size: 12px;
        }
        .pdf-button {
            color: #0149b8;
            padding: 10px 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;
			    border: 1px solid #ddd;
    border-radius: 4px;

			
        }
         .pdf-button a {
           color:#FFFFFF;
			text-decoration: none; /* 确保访问后无下划线 */
            font-size:15px;
        }
		
        .pdf-button:hover {
            background: #0149b8;
			text-decoration: none; /* 确保访问后无下划线 */
            color: #ffffff; /* 点击时颜色 */

        }
        
        
        .pdf-button:active {
            color: #E63946; /* 点击时颜色 */
        }
		
        .xiaopdf-button {
            color: #0149b8;
            padding: 2px 4px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
			text-decoration: none; /* 确保访问后无下划线 */
            font-size: 9px;
			font-family:宋体;
			    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: 8px 10px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
			text-decoration: none; /* 确保访问后无下划线 */
			margin-right:10px;
			margin-bottom:5px;
			font-size:14px;
        }
         .Menu a {
           color:#FFFFFF;
			text-decoration: none; /* 确保访问后无下划线 */
        }
		
        .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;
        }
	
		
/* 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: 650px) {
            .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: 3;           /* 限制显示的行数为2行 */
            overflow: hidden;               /* 隐藏超出部分 */
            text-overflow: ellipsis;        /* 文本溢出时显示省略号 */
            width: 850px;                   /* 设置宽度为800px */
            max-width: 100%;                /* 最大宽度为100% */
            line-height: 1.6;               /* 设置行高 */
            font-size: 14px;                /* 设置字体大小 */
            padding-top: 3px ;                  /* 添加内边距 */
			 padding-bottom: 3px ;                  /* 添加内边距 */

             border-bottom: 1px dashed  #CCCCCC;     /*   添加边框 */
            /* border-radius: 6px;             /* 添加圆角 */
            background: #fff;               /* 设置背景色 */
            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.5;
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;
        }
<!-----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;
        }
        
        .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: 25px;
            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;
            }
        }