@charset "utf-8";
/* Base Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small,strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}
:focus { outline:0;}
img { border:0;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {	quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}
table {	border-collapse: collapse;	border-spacing: 0;}
.clear { width:100%; height:0; line-height:0; font-size:0; overflow:hidden; clear:both; display:block; _display:inline;}
.none { display:none;}
.hidden { visibility:hidden;}
.clearfix:after{clear: both;content: ".";display: block;height: 0;visibility: hidden;}
.clearfix{display: block; *zoom:1;}

/**布局开始**/
body { }
body,p { font:12px/1 "\u5b8b\u4f53", Tahoma, Geneva, sans-serif; color:#333;}
a { color:#333; text-decoration:none;}
a:hover { opacity: 0.7 !important;filter:alpha(opacity=70) !important;}
.wrapper { width:100%; margin:0 auto;}
.wrapper .inner { width:1200px; margin:0 auto;} /**页面全局宽度**/

/**标题栏新闻窗口**/
.post { margin-bottom:10px;}
.post .tt { height:32px; border-bottom:4px solid #e5e5e5;} /**标题栏**/
.post .tt .tit { display:inline-block; float:left; font-size:18px; font-weight:bold; color: #1357ba; font-family: 微软雅黑;} /**标题字体**/
.post .tt .tit .title { display:inline-block; height:32px; line-height:32px; border-bottom: 5px solid #1357ba;     margin-right: 20px;} /**标题图标**/
.post .tt .more_btn { display:inline-block; height:32px; line-height:32px; float:right;}
  /**更多按钮**/
.more_text{font-size:14px;  color: #7d7d7d; font-family: 微软雅黑;}
.post .con { padding:15px 0; margin:0 auto;}
.post .con .wp_article_list .list_item { border-bottom:0px dashed #ccc;} /**新闻列表**/
.post .con .wp_article_list .list_item .Article_Index { background:url(images/li.jpg) no-repeat center;} /**新闻列表图标**/

/**自定义新闻列表**/
.news_list {}
.news_list li.news span.news_title { float:left;}
.news_list li.news span.news_meta { float:right; margin-left:2px;}
.news_list li.news p {clear:both; line-height:20px; color:#787878;}
.news_list li.news p a { color:#787878;}
.news_list li.news p a:hover { color:#444; text-decoration:underline;}


/**页头开始**/
#header {background:#fff;height:150px;}
#header .inner { }
.head { width:100%; height:150px; position:relative;position:relative;}    /**页头部分**/
.head .sitetitle { position:absolute; left:366px; top:48px; font-size:32px; font-weight:bold; color:#113a7e;}		/**站点名称**/
.head-l{padding-top:10px;}
.head-r{width:200px;}

/**导航栏样式 **/
#nav {
    height:50px;
    background:#0c2c5e; /* 更深的蓝色背景 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar { width:100%; }   	/**导航区域背景**/
.navbar .navbox {
    width:1200px;
    height:50px;
    margin:0 auto;
}   /**导航窗口大小及位置**/

/**主导航样式**/
/* 一级菜单悬浮动画替换 */
.navbar .navbox .wp_nav {
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar .navbox .wp_nav li.nav-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.navbar .navbox .wp_nav li.nav-item a {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative; /* 新增 */
    overflow: hidden;   /* 新增 */
}

.navbar .navbox .wp_nav li.nav-item a span.item-name {
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    display: block;
    position: relative; /* 新增 */
    z-index: 1;         /* 新增 */
}

/**鼠标悬停和当前选中效果 - 绿色背景**/
.navbar .navbox .wp_nav li.nav-item a:hover,
.navbar .navbox .wp_nav li.nav-item a.parent,
.navbar .navbox .wp_nav li.nav-item a.current {
    background: #2fc4a7 !important;
}

.navbar .navbox .wp_nav li.nav-item a::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 100%;
    background: #2fc4a7; /* 悬浮绿色 */
    z-index: 0;
    transition: width 0.5s ease;
    transform: translateX(-50%);
}

.navbar .navbox .wp_nav li.nav-item a:hover::before,
.navbar .navbox .wp_nav li.nav-item a.parent::before,
.navbar .navbox .wp_nav li.nav-item a.current::before {
    width: 100%;
}


/**二级菜单样式**/
.navbar .navbox .wp_nav .sub-nav {
    min-width: 200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: left;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar .navbox .wp_nav li.nav-item:hover .sub-nav {
    visibility: visible;
    opacity: 1;
}

.navbar .navbox .wp_nav .sub-nav li.nav-item {
    display: block;
    width: 100%;
    text-align: center;
}

.navbar .navbox .wp_nav .sub-nav li.nav-item a {
    font-size: 14px;
    color: #333 !important;
    font-weight: normal;
    text-align: center;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border: none;
    transition: all 0.2s ease;
}

.navbar .navbox .wp_nav .sub-nav li.nav-item a span.item-name {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
}

/**二级菜单悬停效果**/
.navbar .navbox .wp_nav .sub-nav li.nav-item a:hover,
.navbar .navbox .wp_nav .sub-nav li.nav-item a.parent {
    background: #2fc4a7 !important;
    color: #fff !important;
}

/**三级菜单样式**/
.navbar .navbox .wp_nav .sub-nav .sub-nav {
    left: 100% !important;
    top: 0 !important;
    transform: none !important;
    margin-left: 1px;
}

.navbar .navbox .wp_nav .sub-nav .sub-nav li.nav-item a {
    font-size: 13px;
}

/**导航栏响应式调整**/
@media (max-width: 1200px) {
    .navbar .navbox {
        width: 100%;
        padding: 0 10px;
    }

    .navbar .navbox .wp_nav li.nav-item a span.item-name {
        padding: 0 10px;
    }
}

/**移除原有的悬效果透明度设置**/
.navbar .navbox .wp_nav li.nav-item a:hover {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

/**确保导航栏在所有内容之上**/
.navbar {
    position: relative;
    z-index: 1000;
}

/**主导航激活状态**/
.navbar .navbox .wp_nav li.nav-item.active a {
    background: #fff !important;
    color: #0c2c5e !important;
}

/**下拉菜单箭头指示**/
.navbar .navbox .wp_nav li.nav-item.has-submenu > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/**页头导航链接样式**/
.head11 .wp_nav {
    display: block;
    margin: 0;
    padding: 0;
    display: block;
    width: 152px;
    float: right;
    background: url(images/tiao.png)no-repeat center;
}

.head11 .wp_nav .nav-item a {
    color: #fff;
    font-size: 14px;
    font-family: 微软雅黑;
}

.head11 a {
    color: #fff;
    font-size: 14px;
    font-family: 微软雅黑;
}

div#wp_nav_w8 .wp_nav .nav-item a {
    padding: 0 21px;
    color: #fff;
    font-size: 14px;
    font-family: 微软雅黑;
}

div#wp_nav_w8 .wp_nav li.nav-item.i3 {
    margin-left: 2px;
}
/**主体开始**/
#container { padding:7px 0;}
#container .inner { background:#fff; width:1200px; padding-top:20px;}

/* 新增的三行布局样式 */
.three-row-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background: #fff;
}

.three-row-container .inner {
    width: 1200px;
    margin: 0 auto;
}

.row {
    margin-bottom: 20px;
    overflow: hidden;
}

.row:last-child {
    margin-bottom: 0;
}

.row-left {
    width: 580px;
    float: left;
}

.row-right {
    width: 580px;
    float: right;
}

/* 为新增的窗口添加样式 */
.row-post {
    margin-bottom: 10px;
    background: #fff;
}

.row-post .tt {
    height: 32px;
    border-bottom: 4px solid #e5e5e5;
}

.row-post .tt .tit {
    display: inline-block;
    float: left;
    font-size: 18px;
    font-weight: bold;
    color: #1357ba;
    font-family: 微软雅黑;
}

.row-post .tt .tit .title {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    border-bottom: 5px solid #1357ba;
    margin-right: 20px;
}

.row-post .tt .more_btn {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    float: right;
}

.row-post .con {
    padding: 15px 0;
    margin: 0 auto;
}


/**首页三列布局**/
.mod {}
.mod1 { width:236px; float:left;} /**左列**/
.mod1 .ml { width:100%;} 
.mbox {  background:#fff;}
.mod2 { width:1200px; }
.mod2 .mc { width:580px; float:left;} /**中间**/
.mod2 .mr { width:580px; float:right;} /**右列**/

.col_menu { 
    width: 236px; 
    float: left;
    margin-top: 10px;
}

.col_menu .col_menu_head {}
.col_menu .col_menu_head h3.col_name {
    font-size: 19px;
    font-weight: bold;
    color: #035280;
}
.col_menu .col_menu_head h3.col_name .col_name_text {
    display: block;
    line-height: 21px;
    padding: 5px 5px 13px 0px;
    font-family: 微软雅黑;
    text-align: center;
}

/**栏目列表*/
.col_list .wp_listcolumn { 
    border-top: 1px solid #035280; 
    border-bottom: 1px solid #fff; 
}

/* 一级菜单链接 - 修复：仅针对顶级菜单 */
.col_list .wp_listcolumn > .wp_column > a {
    display: block;
    padding: 12px 0;
    text-align: center;
    color: #5f5f5f;
    background: #fff;
    border: none;
    font-family: "Microsoft Yahei";
    position: relative;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* 一级菜单文字效果 */
.col_list .wp_listcolumn > .wp_column > a span.column-name {
    position: relative;
    display: inline-block;
    z-index: 1;
    background: linear-gradient(to right, #113a7e 50%, #113a7e 50%);
    background-size: 0% 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-fill-color: #5f5f5f;
    transition: background-size 0.3s ease;
}

.col_list .wp_listcolumn > .wp_column > a:hover span.column-name {
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
}

/* 一级菜单下划线动画 - 仅针对顶级菜单 */
.col_list .wp_listcolumn > .wp_column > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-bottom: 1px dashed #ccc;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.col_list .wp_listcolumn > .wp_column > a:hover::after {
    border-bottom: none;
    background-color: #113a7e;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    animation: lineGrow 0.3s forwards;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 100%; }
}

.col_list .wp_listcolumn > .wp_column > a:hover,
.col_list .wp_listcolumn > .wp_column > a.selected {
    color: #000;
}

.col_list .wp_listcolumn > .wp_column > a.selected span.column-name {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* 二级菜单优化 - 适配容器大小和字体 */
.col_list .wp_listcolumn .wp_subcolumn {
    background: #f8fafc;
    border-left: 2px solid #035280;
    width: 100%; /* 确保宽度适配父容器 */
    box-sizing: border-box;
}

/* 二级菜单链接 - 修复：移除伪元素并保持居中 */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
    display: block;
    padding: 14px 20px;  /* 增加内边距 */
    color: #555;
    background: #f8fafc !important; /* 强制覆盖背景颜色 */
    background-image: none !important; /* 移除背景图片 */
    border-bottom: 1px solid #e1e8f0;
    font-size: 16px; /* 增大字体 */
    font-family: "Microsoft Yahei";
    text-align: center; /* 文字居中 */
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    line-height: 1.4; /* 增加行高 */
    width: 100%; /* 确保宽度适配 */
    box-sizing: border-box;
}

/* 关键修复：彻底移除二级菜单的::after伪元素 */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a::after {
    display: none !important;
    content: '' !important;
    border: none !important;
    background: none !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 移除二级菜单图标 */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a::before {
    display: none; /* 隐藏圆点图标 */
}

/* 二级菜单悬浮效果 */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a:hover {
    background: #e8f2ff !important;
    background-image: none !important; /* 确保悬浮状态也无背景图片 */
    color: #035280;
    /* 移除水平偏移，保持居中 */
}

/* 二级菜单选中效果 */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a.selected {
    background: #035280 !important;
    background-image: none !important; /* 确保选中状态也无背景图片 */
    color: #fff;
    font-weight: 500;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_column a.selected span.column-name {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* 三级菜单优化 - 同样移除图标并居中 */
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn {
    background: #f0f7ff;
    border-left: 1px solid #1a6da1;
    width: 100%;
    box-sizing: border-box;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_column a {
    background: #f0f7ff !important; /* 强制覆盖背景颜色 */
    background-image: none !important; /* 移除三级菜单背景图片 */
    padding: 12px 20px; /* 调整padding */
    font-size: 15px; /* 增大三级菜单字体 */
    border-bottom: 1px solid #d8e7f7;
    width: 100%;
    box-sizing: border-box;
    text-align: center; /* 三级菜单也居中 */
}

/* 移除三级菜单的::after伪元素 */
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_column a::after {
    display: none !important;
    content: '' !important;
    border: none !important;
    background: none !important;
}

/* 移除三级菜单图标 */
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_column a::before {
    display: none; /* 隐藏图标 */
}

.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_column a:hover {
    background: #d8ebff !important;
    background-image: none !important; /* 确保悬浮状态也无背景图片 */
}

.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_column a.selected {
    background: #1a6da1 !important;
    background-image: none !important; /* 确保选中状态也无背景图片 */
}

/* 四级及以下菜单统一样式 - 移除图标并居中 */
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a,
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a {
    background: #e8f2ff !important; /* 强制覆盖背景颜色 */
    background-image: none !important; /* 移除背景图片 */
    padding: 10px 20px; /* 调整padding */
    font-size: 14px; /* 增大字体 */
    border-bottom: 1px solid #c8dff7;
    width: 100%;
    box-sizing: border-box;
    text-align: center; /* 四级菜单也居中 */
}

/* 移除四级及以下菜单的::after伪元素 */
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a::after,
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a::after {
    display: none !important;
    content: '' !important;
    border: none !important;
    background: none !important;
}

/* 移除四级及以下菜单图标 */
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a::before,
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a::before {
    display: none; /* 隐藏图标 */
}

/* 四级及以下菜单悬浮和选中状态 */
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a:hover {
    background: #d0e5ff !important;
    background-image: none !important;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a.selected,
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a.selected {
    background: #0c5a9c !important;
    background-image: none !important;
}

/* 基础响应式设计 */
@media (max-width: 768px) {
    .col_menu {
        width: 100%;
        float: none;
    }
    
    .col_list .wp_listcolumn .wp_subcolumn .wp_column a {
        padding: 16px 15px; /* 移动端增加padding */
        font-size: 16px; /* 保持字体大小 */
    }
    
    .col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_column a {
        padding: 14px 15px;
        font-size: 15px;
    }
    
    .col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a,
    .col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a {
        padding: 12px 15px;
    }
}

.col_news {min-height: 400px;width: 900px;float:right;margin-top: 10px;margin-bottom: 60px;} /**栏目新闻**/
.col_news_head {border-bottom: 1px solid #035280;}
.col_metas .col_title { display:inline-block; float:left; height:40px; line-height:30px;}  /**当前栏目**/
.col_metas .col_title h2 {display:inline-block;font-size:19px;font-weight:bold;color: #035280;padding:0 50px 0 0px;font-family: 微软雅黑;}   /**当前栏目名称**/
.col_metas .col_path { display:inline-block; float:right; white-space:nowrap; height:18px; line-height:18px; margin-top:5px;color: #ababab;font-family:微软雅黑; font-size:14px;} /**当前位置**/

.col_news_box { padding:10px 0; margin:0 7px;}
.col_news_list { margin-top:7px;}
.col_news_list .wp_article_list .list_item {}  /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index { background:url(images/li.gif) no-repeat center;}  /**栏目新闻图标序号**/
.col_news_list .wp_entry,.col_news_list .wp_entry p { line-height:1.6; font-size:14px; color:#333;}
.col_news_list .wp_entry p { margin-bottom:6px;}
.col_news_list .wp_entry img { max-width:900px; _width:expression(this.width > 900 ? "900px" : this.width); }   /**列表页文章图片大小限制**/

/**文章页**/
.infobox { margin:0 auto; min-height: 400px;}
.article {}
.article h1.arti_title { line-height:26px; font-family: "Microsoft YaHei"; padding:5px; text-align:center; font-size:18px; color:#282828; border-bottom:2px solid #06508d;} /**文章标题**/
.article .arti_metas { padding:10px; text-align:center;}
.article .arti_metas span { margin:0 5px; font-size:12px; color:#787878;} /**文章其他属性**/
.article .entry { margin:0 auto; overflow:hidden;} /**文章内容**/
.article .entry .read,.article .entry .read p { line-height:1.6; font-size:14px; color:#333;}  /**阅读字体**/
.article .entry .read p { margin-bottom:6px;}
.article .entry .read img { max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); }   /**文章阅读部分图片大小限制**/

/**页脚开始**/
.footer_link {
    padding-left: 10px;
    color: white;
    font-size: 15px;
    padding-top: 9px;
    margin-bottom: 4px;
}
.footer_link a{
    padding-left: 10px;
    color: white;
    font-size: 15px;
    padding: 9px 0 0 0;
}
.main_box{
    width: 1200px;
    margin: 0 auto;
}
.footer p{
    text-align: center;
    margin: 0;
    padding: 9px 0;
    color: white;
} 

.post.post-8.mbox {

}

.tpdh { }

.sj { width:120px; height:30px; background:#1357ba; color:#fff; font-family:微软雅黑; font-size:16px;line-height:30px;text-align:center;margin-right:23px;}

li.news-item.clearfix {
    border-bottom: 1px solid #eee;
    padding:25px 0 20px 0;width:100%;
	}
li.item-1.clearfix{padding-top:10px;}

.item-meta.meta-title {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-family: 微软雅黑;
    color: #313131;width:607px;height:30px;line-height:30px;
}

.item-meta.meta-title a {
    font-size: 16px;
    font-family: 微软雅黑;
    color: #313131;
}

.jianjie {
    width:100%;margin-top:4px;line-height:26px;color:#222;
}

.jianjie a { font-size:14px; font-family:微软雅黑; color:#a0a0a0; }

li.news1{width:130px;margin-right:10px;}
li.s3{margin-right:0;}
.news_img_s{width:130px;height:90px;position:relative;}
.news_title_bg{position:absolute;left:0;bottom:0;width:100%;height:30px;background:#2f66b5;opacity: 0.7;filter:alpha(opacity=70);}
.news_title1{position:absolute;left:0;bottom:0;width:100%;height:30px;line-height:30px;text-align:center;font-size:14px; font-family:微软雅黑; color:#fff;}
.news_title1 a{color:#fff;}


.Article_Title {
    line-height: 30px;
    color: #7d7d7d;
    font-size: 14px;
    font-family: 微软雅黑;
}

.head11 .wp_nav {
    display: block;
    margin: 0;
    padding: 0;
    display: block;
    width: 152px;
    float: right;
background: url(images/tiao.png)no-repeat center;
}

.head11 .wp_nav .nav-item a {
    color: #fff;
    font-size: 14px;
    font-family: 微软雅黑;
}

.wp_article_list .list_item .Article_Index {
    display: inline-block;
    width: 10px;
    height: 30px;
    margin-top: 0;
    color: #fff;
    font-size: 11px;
    float: left;
    margin-right: 5px;
    overflow: hidden;
    text-indent: -99em;
    background: url(wp_article_li_1.png) no-repeat 50%;
}

.wp_article_list .list_item {
    width: 100%;
    height: 30px;
    line-height: 30px;
    border-bottom: none;
    vertical-align: top;
}

span.Article_Title a {
    line-height: 30px;
	font-size:14px;
	font-family:微软雅黑;
	color:#7d7d7d;
}

span.Article_Title a:hover { }

.wp_article_list .list_item .Article_PublishDate {
    color: #a0a0a0;
    font-size: 14px;
    font-family: 微软雅黑;
}

.head11 a {
    color: #fff; font-size: 14px;
    font-family: 微软雅黑;
}
.wp_nav .nav-item {
    display: inline-block;
    float: left;
    position: relative;
    vertical-align: bottom;
}

.wp_search .search {
    background: url(images/searchbtn.jpg);
    width: 40px;
    height: 40px;
    border: 0px;
    cursor: pointer;

}

input#keyword {
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    font-family: 微软雅黑;
    padding-left: 10px;
}

.db31 {
    background: url(images/lj.jpg);
    margin-bottom: 10px;
    width: 225px;
}

select.w1031_openLink {
    height: 35px;
    position: relative;
    left: 25px;
    background: none;
    border: 0px;
    color: #fff;
    text-align: center;
}


.db32 {
   background: url(images/lj.jpg);
    margin-bottom: 10px;
    width: 225px;
}

select.w1032_openLink {
    height: 35px;
    position: relative;
    left: 25px;
    background: none;
    border: 0px;
    color: #fff;
    text-align: center;
}


.db33 {
   background: url(images/lj.jpg);
    margin-bottom: 10px;
    width: 225px;
}

select.w1033_openLink {
     height: 35px;
    position: relative;
    left: 25px;
    background: none;
    border: 0px;
    color: #fff;
    text-align: center;
}

div#wp_nav_w8 .wp_nav .nav-item a {
    padding: 0 21px;
    color: #fff;
    font-size: 14px;
    font-family: 微软雅黑;
}

div#wp_nav_w8 .wp_nav li.nav-item.i3 {
    margin-left: 2px;
}

.wp_listcolumn .wp_column a .column-name {
    display: inline-block;
    line-height: 22px;
    padding: 5px 10px 5px 5px;
    cursor: pointer;
}

.col_list .wp_listcolumn .wp_column a:hover, .col_list .wp_listcolumn .wp_column a.selected {
    color: #fff;
}

.wp_listcolumn .wp_column a.selected {
    color: #000;
    background-color: #035280;

}

.wp_nav .sub-nav {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 200;
    visibility: hidden;
    border: 0px solid #ccc;
        border-top-color: rgb(204, 204, 204);
        border-top-style: solid;
        border-top-width: 1px;
    border-top: none;
}


.sudy-links .links-name { background:none;}

.sudy-links .links-wrap a:hover {
    background-color: none;
}

.article {
    width: 1000px;
    margin: 0 auto;
}


.sudy-links .links-name {
    display: inline-block;
    line-height: 32px;
    padding: 0 20px 0 35px;
  color:#fff;
    cursor: default;
}


.sudy-links .links-wrap a:hover {
    background-color: #fff;
}

.fl{float:left;}
.fr{float:right;}
.zddz2 {
    padding-left: 40px;
    display: block;
}
/*自定义输入框*/
.wp-search {
    position: relative;
    /* border: 1px solid #d0d0d0; */
}
.wp-search form {display: block;}
.wp-search .search-input {}
.wp-search .search-input input.search-title {
    width: 100%;
    height: 32px;
    padding: 4px 2px;
    /* line-height: 22px; */
    background: none;
    color: #FFFFFF;
    font-size: 14px;
    border: 0;
    outline: 0;
    position: absolute;
}
.wp-search .search-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0%;
}
.wp-search .search-btn input.search-submit {
    width: 40px;
    height: 40px;
    border: 0;
    outline: 0;
    background: none;
    cursor: pointer;
}
.wp_article_list .list_item .Article_Title {
    float: left;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 295px;
}
.sudy-links .links-name {
    display: inline-block;
   font-weight:100! important;
    line-height: 32px;
    padding: 0 20px 0 35px;
    cursor: default;
    color: #fff;
    font-size: 14px! important;
    font-family: 微软雅黑;
}
input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-transition-delay: 99999s;
        -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}


/* 外层搜索表单：保持水平排列 */
.wp-search .search-form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  width: 360px;
  height: 40px;
  box-sizing: border-box;
}

/* 输入框占满剩余空间 */
.wp-search .search-input {
  flex: 1;                  /* 自动占满除按钮外的空间 */
  border: none;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
  height: 100%;
  box-sizing: border-box;
}

/* 搜索按钮仅为图标大小 */
.wp-search .search-button {
  width: 36px;              /* 固定为小图标大小 */
  height: 36px;
  margin-right: 2px;        /* 微调间距 */
  background-color: transparent;
  border: none;
  background-image: url('https://cdn-icons-png.flaticon.com/512/622/622669.png');
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* 鼠标悬停效果 */
.wp-search .search-button:hover {
  background-color: #f5f5f5;
  border-radius: 50%;
}

/* ===== 终极居中方案 ===== */

/* 重置所有二级菜单样式 - 修复版：保留原有样式但移除伪元素 */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
    display: block !important;
    padding: 14px 20px !important;
    color: #555 !important;
    background: #f8fafc !important;
    border-bottom: 1px solid #e1e8f0 !important;
    font-size: 16px !important;
    font-family: "Microsoft Yahei" !important;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* 关键修复：确保没有伪元素 */
    position: static !important;
}

/* 关键修复：彻底移除所有二级菜单的::after伪元素 */
.col_list .wp_listcolumn .wp_subcolumn .wp_column a::after {
    all: unset !important;
    display: none !important;
    content: '' !important;
    border: none !important;
    background: none !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_column a span.column-name {
    display: inline !important;
    text-align: center !important;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_column a::after,
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a::after,
.col_list .wp_listcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_subcolumn .wp_column a::after {
    all: unset !important;
    display: none !important;
    content: '' !important;
    border: none !important;
    background: none !important;
}