﻿@charset "utf-8";

/* ==================== 全局基础样式 ==================== */
/* 重置所有元素的默认边距和内边距 */
html, body, div, h1, h2, h3, h4, h5, h6, p, span, em, 
a, img, ul, li, ol, form, button, input, textarea, dl, dt, dd, iframe {
    margin: 0;
    padding: 0;
}

/* 基础文本样式 */
body {
    text-align: left;
    font: normal 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
}

/* ==================== 文字选中效果 ==================== */
::-moz-selection {
    background: #8c0000;
    color: #FFF;
    text-shadow: none;
}

::selection {
    background: #8c0000;
    color: #FFF;
    text-shadow: none;
}

/* 需要加粗的部分单独控制（如标题等） */
h1, h2, h3, h4, h5, h6, strong, b {
    font-weight: 600; /* 比bold(700)稍细的加粗 */
}

/* 链接样式 */
a {
    cursor: pointer;
    color: #666666;
    text-decoration: none;
    outline: 0 none;
    /* 平滑过渡效果 */
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
}
/* 链接悬停状态 */
a:hover, a:focus {
    text-decoration: none;
    color: #C80001;
}

/* 标题和强调文本重置 */
h1, h2, h3, h4, h5, h6, em {
    font-size: 14px;
    font-weight: normal;
}
h2 {
    color: #000;
}

/* 列表样式重置 */
ol, ul {
    list-style: none;
}
em {
    font-style: normal;
}

/* 图片样式 */
img {
    border: 0;
    vertical-align: middle;
}

/* 图片悬停效果 */
a:hover img {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

/* ==================== 工具类 ==================== */
/* 清除浮动 */
.clear {
    clear: both;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}

/* 布局容器 */
.wrap {
    margin: 0 auto;
    width: 980px;
}

/* 间距工具类 */
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt1 { margin-top: 1px; }

/* ==================== 头部样式 ==================== */
.nav_bar {
    height: 50px;
    background: #DA0000;
    color: #FFF;
    text-shadow: 1px 1px 1px #000;
}
.nav_bar a {
    color: #fff;
    text-decoration: none;
}
.nav_bar a:hover {
    color: #63b8ff;
    text-decoration: none;
}
/* 网站标题/域名 */
.nav_bar .domain {
    float: left;
    font: bold 25px/50px sans-serif; /* 使用粗体和无衬线字体 */
    font-weight: bold;
    font-size: 25px;
    line-height: 50px;
    font-family: sans-serif;
}
/* 导航右侧内容 */
.nav_bar .nav_bar_r {
    float: left;
    line-height: 60px;
    margin-left: 10px;
    overflow: hidden;
}

/* ==================== 主导航菜单 ==================== */
.nav_menu {
    width: 980px;
    overflow: hidden;
}
.nav li {
    background: #fff;
    width: 162px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
    border-left: 1px solid #e6e6e6;
    float: left;
    text-align: center;
    text-shadow: 1px 1px 1px #f5f5f5;
    border-bottom: 1px solid #e6e6e6;
}
.nav li a {
    display: inline-block;
    width: 162px;
    color: #000;
}
.nav li a:hover {
    background-color: #000;
    color: #FFF;
    text-decoration: none;
    text-shadow: 1px 1px 1px #000;
}
/* 当前活动导航项 */
.nav .active {
    background: #a5160f;
    width: 124px;
    border-left: none;
}

/* 按钮容器样式 */
.btcont {
    width: 124px;
    height: 40px;
    font-size: 16px;
    font-family: microsoft yahei;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    background: #DA0000;
    z-index: 500;
    margin: 0 0 10px 1px;
    border-radius: 4px;
}

/* 分隔线 */
.fh {
    width: 960px;
    height: 12px;
    overflow: hidden;
    margin: 0 auto;
}

/* ==================== 页脚导航菜单 ==================== */
.nav_menu_foot {
    width: 980px;
    overflow: hidden;
}
.nav_menu_foot li {
    background: #fff;
    width: 121px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #a5160f;
    border-left: 1px solid #e4e4e4;
    float: left;
    text-align: center;
    border-bottom: 1px solid #e4e4e4;
}
.nav_menu_foot li a {
    display: inline-block;
    width: 121px;
    color: #DA0000;
}
.nav_menu_foot li a:hover {
    background-color: #000;
    color: #FFF;
    text-decoration: none;
}

/* 页脚内容块 */
.foot_cb {
    width: 980px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 20px auto 0;
}

/* 版权信息 */
.copyright {
    height: 50px;
    line-height: 50px;
    text-align: center;
}

/* ==================== 滚动条 ==================== */
::-webkit-scrollbar {
    background-color: #F5F5F5; /* 改为浅灰色背景 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #EDEDED; /* 浅灰色轨道 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background-color: #A00000; /* 使用您的主红色 */
}

/* 滑块悬停 */
::-webkit-scrollbar-thumb:hover {
    background-color: #800000; /* 加深的主红色 */
}

/* ==================== 全局基础样式 ==================== */
/* 禁止水平滚动 */
html, body { 
    overflow-x: hidden;
}

/* ==================== 布局工具类 ==================== */
/* 宽度容器 */
.w985 { /* 空类，保留结构 */ }
.w1000 { 
    width: 1000px; 
    margin: 0 auto;
}

/* 浮动类 */
.f_left { float: left; }
.f_right { float: right; }

.fs_14 { 
    font-size: 14px;
}

/* 日期样式 */
.date {
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    color: #666666;
    font-weight: 100;
    font-size: 12px;
    padding-right: 20px;
}
.date2 {
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    color: #c90307;
    font-weight: 100;
    font-size: 12px;
    padding-right: 20px;
}

/* 更多链接 */
.more {
    float: right;
    display: inline;
    margin: 20px 20px 0 0;
    font: 12px/20px "simsun";
    color: #FFFFFF !important;
}

/* 间距类 */
.mb10 { 
    margin-bottom: 10px;
}

/* ==================== 栏目标题样式 ==================== */
.lm_title {
    background: #000000;
    height: 47px;
    color: #FFFFFF;
    padding-left: 10px;
    line-height: 47px;
    font-size: 20px;
    font-family: "bold";
    margin-bottom: 5px;
}

/* 短标题变体1 */
.lm_short_title1 {
    background: linear-gradient(to right, #A00000, #800000);
    height: 59px;
    color: #FFFFFF;
    padding-left: 20px;
    line-height: 59px;
    font-size: 20px;
    font-family: "bold";
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* 悬停特效 */
.lm_short_title1:hover {
    background: linear-gradient(to right, #A80000, #880000); /* 仅轻微加深 */
    border-left-color: rgba(255, 215, 0, 0.7); /* 半透明金色 */
}

/* 超链接样式 */
.lm_short_title1 a.more {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

/* 超链接悬停效果 */
.lm_short_title1 a.more:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* 短标题变体2 */
.lm_short_title2 {
    background: linear-gradient(to right, #A00000, #800000); /* 统一暗红渐变 */
    height: 59px;
    color: #FFFFFF;
    padding-left: 20px;
    line-height: 59px;
    font-size: 20px;
    font-family: "bold";
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

/* 悬停特效 */
.lm_short_title2:hover {
    background: linear-gradient(to right, #B00000, #800000);
    border-left-color: #FFD700;
}

/* 超链接样式 */
.lm_short_title2 a.more {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

/* 超链接悬停 */
.lm_short_title2 a.more:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* 短标题变体3 */
.lm_short_title3 {
    background: linear-gradient(to right, #A00000, #800000); /* 统一暗红渐变 */
    height: 59px;
    color: #FFFFFF;
    padding-left: 20px;
    line-height: 59px;
    font-size: 20px;
    font-family: "bold";
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

/* 悬停特效 */
.lm_short_title3:hover {
    background: linear-gradient(to right, #B00000, #800000);
    border-left-color: #FFD700;
}

/* 超链接样式 */
.lm_short_title3 a.more {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

/* 超链接悬停 */
.lm_short_title3 a.more:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* 长标题 */
.lm_long_title {
    background: linear-gradient(to right, #A00000, #800000); /* 统一暗红渐变 */
    height: 59px;
    color: #FFFFFF;
    padding-left: 20px;
    line-height: 59px;
    font-size: 20px;
    font-family: "bold";
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    margin-bottom: 15px;
    position: relative;
}

/* 悬停特效 */
.lm_long_title:hover {
    background: linear-gradient(to right, #B00000, #800000);
    border-left-color: #FFD700;
}

/* 超链接样式 */
.lm_long_title a.more {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 10px;
}

/* 超链接悬停效果 */
.lm_long_title a.more:hover {
    opacity: 1;
    transform: scale(1.05);
}























/* 栏目标题变体2 */
.lm_title2 {
    background: url(/niecucom/images/lm_title2.jpg) no-repeat left top black;
    height: 47px;
    line-height: 47px;
    padding-left: 10px;
    font-size: 20px;
    font-family: "bold";
    color: #FFFFFF;
    margin-bottom: 5px;
}

/* ==================== 顶部信息栏 ==================== */
.topInfo {
    height: 26px;
    background: #FFFFFF;
    width: 1000px;  /* 固定宽度 */
    margin: 0 auto; /* 居中显示 */
}
.topInfo a { 
    color: #FFFFFF;
}
.topNews {
    width: 450px;
    float: left;
    background: url(/niecucom/images/ggNews.jpg) no-repeat left;
    padding-left: 25px;
    height: 26px;
    overflow: hidden;
}
.favIndex {
    line-height: 26px;
    text-align: left;
    text-indent: 20px;
    color: #000000;
}
/* ==================== 菜单区块 ==================== */
.menuBlock {
    height: 570px;
    position: relative;
}
.banner_info {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 1;
}

/* 轮播图容器 */
.banner {
    position: relative;
    height: 470px;
    overflow: hidden;
}

/* 轮播图内容 */
.banner .picFlash {
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);  
    height: 470px;
    top: 0;
    overflow: hidden;
}

/* 轮播图指示器 */
#bannerWrapper { /* 空规则，保留结构 */ }
#bannerWrapper ul {
    position: absolute;
    right: 12px;
    bottom: 57px;
    z-index: 10;
}
#bannerWrapper ul li {
    float: left;
}
#bannerWrapper ul li a {
    float: left;
    width: 28px;
    height: 8px;
    margin-right: 7px;
    background: url(/niecucom/images/banner_off.jpg) center center no-repeat;
    font-size: 0px;
}
#bannerWrapper ul li a.activeSlide {
    background: url(/niecucom/images/banner_on.jpg) center center no-repeat;
}

/* 顶部菜单信息 */
.TopMenuInfo {
    background: url(/niecucom/images/menuBg.png) repeat-x left top;
    height: 100px;
    position: relative;
    z-index: 3;
    /* 新增的宽度限制和居中样式 */
    width: 1000px;
    margin: 0 auto;
    /* 确保背景图在容器内正确显示 */
    background-size: auto 100%;
}
.menu_logo {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
}
.logo {
    width: 210px;
    float: left;
    padding-left: 20px;
    padding-top: 10px;
}
.menuList {
    width: 770px;
    float: right;
    padding-top: 30px;
}

/* ========== 导航菜单样式 ========== */
.s_t_menu {
    width: 80px;
    float: left;
    text-align: center;
    font-family: "bold";
    position: relative;
    transition: all 0.3s ease;
    background: #8C0000; /* 默认红色背景 */
    margin: 0 1px; /* 添加间隔 */
}

.c_text {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    font-weight: bold;
    padding: 10px 0;
    display: block;
}

/* 默认状态（白字+红底） */
.c_text a {
    color: #FFF; /* 白色文字 */
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* 鼠标悬停效果（黄底+白字） */
.s_t_menu:hover {
    background: #A00000; /* 悬停黄色背景 */
}

/* 下划线动画效果（悬停时显示） */
.c_text a:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fff600;
    transition: all 0.3s ease;
}

.s_t_menu:hover .c_text a:after {
    left: 0;
    width: 100%;
}

/* 当前选中项样式（深红底+白字） */
.s_t_menu.active {
    background: #A00000; /* 更深的红色 */
}

.s_t_menu.active .c_text a:after {
    width: 100%;
    left: 0;
    background: #FFF;
}

/* ==================== 主体内容区域 ==================== */
.main_content {
    background: #FFF;
    padding-bottom: 10px;
}

/* 主页 - 行业新闻  */
.active_info {
    width: 493px;
}
.top_news_pic { /* 空规则，保留结构 */ }

.top_news_pic .news_pic {
    background: #FFE8E8; /* 浅红色背景 */
    width: 166px;
    height: 113px;
    padding-top: 7px;
    padding-left: 7px;
    border-radius: 3px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
}

.top_news_pic .news_pic img {
    width: 159px;
    height: 106px;
}
.top_news_pic .news_text {
    width: 310px;
}
.top_news_pic .news_text .news_title {
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    margin-bottom: 5px;
    font-size: 14px;
}
.top_news_pic .news_text .news_title a {
    color: #c90307;
}
.top_news_pic .news_text .news_intro {
    color: #555;
    height: 60px;
    line-height: 20px;
    text-indent: 2em;
}
.top_news_pic .news_text .post_time {
    color: #868686;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
}

/* 活动列表 */
.active_list {
    height: 230px;
    background: url(/niecucom/images/number.png) no-repeat;
}
.active_list ul.active_ul { /* 空规则，保留结构 */ }
.active_list ul.active_ul li {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px dashed #cdcdcd;
    padding-left: 28px;
}

/* 主页 - 产品展示 */
.case_show {
    width: 985px;
    margin: 0 auto;
    overflow: hidden;
}

.case_pic {
    width: 318px;
    height: 221px;
    padding: 7px;
    background: #FFF;
    border: 1px solid #E0E0E0; /* 浅灰色边框 */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* 柔和阴影 */
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box; /* 确保边框不撑大容器 */
}

.case_pic:hover {
    border-color: #C80002; /* 悬停时红色边框 */
    box-shadow: 0 4px 12px rgba(200,0,2,0.15); /* 加强阴影 */
}

.case_pic img {
    width: 304px;
    height: 210px;
    object-fit: cover; /* 保持图片比例 */
    display: block;
}

/* 表格单元格样式 */
.case_show table tr td {
    padding: 5px;
    text-align: center;
    line-height: 25px;
    vertical-align: top; /* 顶部对齐 */
}

/* 产品标题样式 */
.case_title {
    font-size: 14px;
    color: #333;
    padding: 8px 0;
    margin-top: 5px;
    border-top: 1px dashed #DDD; /* 标题上方虚线分隔 */
}

/* 主页 - 站内文章  */
.common_sense {
    padding-left: 5px;
    padding-right: 2px;
}
.common_show {
    width: 491px;
}
.common_list {
    padding: 5px 10px;
    height: 172px;
    overflow: hidden;
}
.common_list ul.news_ul { /* 空规则，保留结构 */ }
.common_list ul.news_ul li {
    background: url(/niecucom/images/dot.jpg) no-repeat left 12px;
    padding-left: 10px;
    line-height: 27px;
    height: 27px;
    overflow: hidden;
    border-bottom: 1px dashed #cdcdcd;
}

/* 主页 - 关于我们  */
.thanks_info {
    width: 493px;
}
.thanks_content {
    padding: 5px 15px;
    height: 172px;
    overflow: hidden;
    background: url(/niecucom/images/contact.jpg) no-repeat;
    line-height: 30px;
}
.signal_thanks {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #cdcdcd;
}
.thanks_title {
    height: 25px;
    line-height: 25px;
    font-size: 12px;
}
.thanks_title a {
    color: #c90307;
}
.thanks_title a:hover {
    color: #FFFFFF;
}
.thanks_text { /* 空规则，保留结构 */ }
.thanks_avatar {
    width: 76px;
}
.thanks_avatar img {
    width: 76px;
    height: 49px;
}
.thanks_intro {
    width: 375px;
    color: #666666;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    text-indent: 2em;
}

/* 主页 - 友情链接 */
.friend_show {
    border: 1px solid #e1ddde;
    height: 78px;
    overflow: hidden;
}
.friend_title {
    width: 30px;
}
.friend_list {
    width: 940px;
    padding-top: 12px;
    height: 54px;
    overflow: hidden;
}
.friend_list ul.link_ul { /* 空规则，保留结构 */ }
.friend_list ul.link_ul li {
    float: left;
    width: 146px;
    height: 52px;
    border: 1px solid #dddddd;
    margin-right: 8px;
}

/* ==================== 页脚信息 ==================== */
.footer_info {
    background: linear-gradient(to right, #A00000, #800000); /* 暗红渐变 */
    padding-bottom: 50px;
    color: #FFF;
    width: 1000px;
    margin: 0 auto;
}

.footer_info a {
    color: #FFF;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

.footer_info a:hover {
    color: #FFD700; /* 悬停改为金色 */
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.3); /* 添加微光效果 */
}

.back_top {
    text-align: right;
    padding: 15px 20px 0 0;
}

.fLogo_cop_info {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.f_logo {
    width: 200px;
}

.cop_info {
    width: 635px;
    text-align: left;
    line-height: 25px;
    padding-top: 10px;
    float: left;
}

.ewm {
    float: left;
    padding-top: 15px;
    padding-left: 30px;
}

.firend_link {
    line-height: 25px;
    padding: 10px 20px;
}

/* 活动展示 */
.events_show {
    background: url(/niecucom/images/number2.png) no-repeat 10px 1px;
    padding-right: 10px;
}
.events_show ul.event_ul { /* 空规则，保留结构 */ }
.events_show ul.event_ul li {
    height: 35px;
    line-height: 35px;
    padding-left: 40px;
    border-bottom: 1px dashed #dddddd;
    overflow: hidden;
}
.events_show ul.event_ul li a {
    color: #333;
}
.events_show ul.event_ul li a:hover {
    color: #ef0000;
}
.order_content {
    color: #666;
}
.order_content table tr td {
    line-height: 20px;
    padding: 5px;
}

/* 内页右侧 */
.inner_right {
    width: 751px;
}
.current_title {
    height: 39px;
    color: #FFFFFF;
    padding-left: 10px;
    line-height: 39px;
    font-size: 20px;
    font-family: "bold";
    margin-bottom: 5px;
    border-bottom: solid 1px #C80002;
    width: 730px;
}
.current_title a {
    color: black;
}
.current_title a:hover {
    color: red;
}
.position {
    background: url("/niecucom/images/tb2.png") no-repeat scroll 0 50%;
    padding-left: 25px;
    float: right;
    color: black;
    line-height: 47px;
    font-size: 13px;
    padding-right: 15px;
}

/* ==================== 分页样式 ==================== */
#fenye {
    width: 100%;
    text-align: center;
    clear: both;
    margin: 15px 0 0 0;
}
#fenye .fy_color_1 {
    color: #F00;
}
#PageNum {
    width: 30px;
    height: 18px;
    border: 1px solid #888;
    margin: 0 5px;
    padding-left: 3px;
    text-align: center;
    vertical-align: middle;
    font-family: arial;
}
#GO {
    width: 30px;
    height: 22px;
    line-height: 22px;
    border: 1px solid #888;
    background: #FFF;
    vertical-align: middle;
}
#fenye_2 {
    text-align: center;
    margin: 15px auto;
}
#fenye_2 a, #fenye_2 .dot {
    min-width: 12px;
    height: 18px;
    display: inline-block;
    text-align: center;
    margin: 0 3px;
    padding: 0 3px;
    line-height: 18px;
}
#fenye_2 a {
    border: 1px solid #036;
    color: #036;
}
#fenye_2 a:hover {
    color: #F00;
}
#fenye_2 .curr {
    color: #FFF;
    background: #036;
}

/* ==================== 内容区域 ==================== */
#content {
    color: #333;
    height: auto !important;
    min-height: 500px;
    overflow-x: hidden;
    padding-left: 0px;
    padding-right: 10px;
    width: 730px;
    line-height: 28px;
}

#content p {
    line-height: 25px;
    margin-bottom: 10px;
}

/* 文章列表 */
#Artlist {
    width: 730px;
    padding: 0px;
}
#Artlist dt, #Artlist dd {
    padding: 5px 0;
    display: inline;
    border-bottom: 1px dashed #DDD;
    overflow: hidden;
    line-height: 25px;
}
#Artlist dt {
    width: 638px;
    float: left;
    background: url(/niecucom/images/dot.jpg) no-repeat left;
    padding-left: 10px;
}
#Artlist dd {
    width: 80px;
    text-align: center;
    float: right;
}

/* 新闻详情 */
.newsInfo { 
 margin-left: 0px;
 padding-left: 0;
 }

 
/* 内容区域 */
.newsInfo .cont {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    width: 100%;
}

.newsInfo .cont p {
    margin-bottom: 15px;
    font-size: 1em;
}

.newsInfo .newsTitle {
    font-size: 18px;
    height: 35px;
    line-height: 35px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
}
.newsInfo .timeReads {
    text-align: center;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
}
.newsInfo .newsDetail {
    overflow-x: hidden;
    line-height: 30px;
    margin-top: 10px;
    color: #333;
    width: 690px;
}
.newsInfo .newsDetail p {
    margin-bottom: 10px;
}

/* ==================== 图片列表 ==================== */
.pic_list {
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.signal_pic {
    width: 345px;
    transition: all 0.3s ease; /* 添加悬停动画 */
}

/* 图片容器（统一方块风格） */
.signal_pic .pic_show {
    width: 318px;
    height: 221px;
    padding: 7px;
    background: #FFF;
    border: 1px solid #E0E0E0; /* 浅灰边框 */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* 柔和阴影 */
    box-sizing: border-box;
    position: relative;
}

/* 悬停效果（与案例展示区域一致） */
.signal_pic:hover .pic_show {
    border-color: #C80002; /* 企业红边框 */
    box-shadow: 0 4px 12px rgba(200,0,2,0.15);
}

/* 图片样式 */
.signal_pic .pic_show img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 标题样式（保持专业感） */
.signal_pic .pic_title {
    text-align: center;
    margin-top: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* 悬停时标题变色 */
.signal_pic:hover .pic_title {
    color: #A00000; /* 企业红 */
}

/* 团队图片 */
.team_pic {
    padding-top: 10px;
}
.signal_people {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #dddddd;
}
.signal_people .team_pic {
    background: url(/niecucom/images/team_bg.jpg) no-repeat left top;
    width: 192px;
    height: 221px;
    padding-top: 7px;
    padding-left: 7px;
}
.signal_people .team_pic img {
    width: 184px;
    height: 214px;
}
.signal_people .team_text {
    width: 470px;
}
.signal_people .team_text .team_title {
    height: 40px;
    line-height: 40px;
    font-family: "bold";
    font-size: 20px;
    margin-bottom: 5px;
}
.signal_people .team_text .team_title a {
    color: #000;
}
.signal_people .team_text .team_title a:hover {
    color: #ef0000;
}
.signal_people .team_text .team_info {
    line-height: 25px;
    color: #666666;
    text-indent: 2em;
}
.signal_people .team_text .view_more {
    background: url(/niecucom/images/view_more.jpg) no-repeat left;
    padding-left: 20px;
    line-height: 25px;
    height: 25px;
}

/* ==================== 标签页内容 ==================== */
.team_tap_content { /* 空规则，保留结构 */ }
.tap_title {
    border-top: 1px solid #E1E1E1;
    border-left: 1px solid #E1E1E1;
    width: 684px;
}
.tap_title ul.tap_ul { /* 空规则，保留结构 */ }
.tap_title ul.tap_ul li {
    width: 113px;
    height: 29px;
    line-height: 29px;
    float: left;
    text-align: center;
    font-family: "bold";
    color: #666;
    cursor: pointer;
    border-right: 1px solid #E1E1E1;
    background: url(/niecucom/images/tap_bg.jpg) repeat-x left bottom;
    font-size: 14px;
}
.tap_title ul.tap_ul li.hover {
    color: #FF9500;
    background: #FFF;
}
.tap_content {
    margin-top: 10px;
    padding: 10px;
    color: #333;
    line-height: 25px;
}

/* ==================== 荣誉展示 ==================== */
#honor_show {
    height: 214px;
    overflow: hidden;
    padding-left: 10px;
    padding-top: 10px;
}
#honor_show ul li {
    margin-right: 10px;
}
#honor_show ul li img {
    width: 304px;
    height: 214px;
}

/* ==================== 新闻页左侧导航 ==================== */
.zjyc_left_a {
    background: url("/niecucom/images/zjyc_bg1.jpg") no-repeat scroll 0 0;
    height: 5px;
    width: 202px;
}
.zjyc_left_b {
    background: none repeat scroll 0 0 #F7F7F7;
    border-left: 1px solid #E3E2E2;
    border-right: 1px solid #E3E2E2;
    height: 35px;
    padding-top: 10px;
    text-align: center;
    width: 200px;
}
.zjyc_left_c {
    border-left: 1px solid #E3E2E2;
    border-right: 1px solid #E3E2E2;
    width: 200px;
}
.zjyc_left_d {
    background: url("/niecucom/images/zjyc_bg4.jpg") no-repeat scroll 0 0;
    height: 72px;
    width: 202px;
}
.zjyc_left_e {
    height: 241px;
    margin-top: 30px;
    width: 202px;
}
.zjyc_left_c li {
    background: url("/niecucom/images/zjyc_bg2.jpg") no-repeat scroll 0 0;
    height: 37px;
    width: 200px;
}
.zjyc_left_c ul {
    border-left: 1px solid #E3E2E2;
    border-right: 1px solid #E3E2E2;
    width: 200px;
}
.zjyc_left_c li a {
    color: #FFFFFF;
    display: flex;          /* 改为flex布局 */
    align-items: center;    /* 垂直居中 */
    height: 37px;           /* 匹配li高度 */
    padding: 0 0 0 28px;    /* 调整padding */
    /* 移除padding-top和width */
    text-decoration: none;
}

/* ==================== 完全移除下划线 ==================== */
.zjyc_left_c li a,
.zjyc_left_c li a:hover,
.zjyc_left_c li li a,
.zjyc_left_c li li a:hover {
    text-decoration: none !important;
}

.zjyc_left_c li a:hover {
    background: url("/niecucom/images/zjyc_bg3.jpg") no-repeat scroll 0 0;

    opacity: 0.9;         /* 轻微透明 */
    filter: brightness(1.2); /* 提高亮度 */
    transition: filter 0.2s ease; /* 添加过渡 */
}

/* 上一篇/下一篇链接样式 */
.sxp {
    margin-top: 15px;
    width: 730px;
}

#content .newsInfo .sxp LI {
    border: 1px solid #FFD6D6;
    height: 32px;
    line-height: 32px;
    margin: 10px 0;
    padding: 0 0 0 0px;
    width: 730px;
    background: #FFF;
    border-radius: 3px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(200,0,2,0.05);
}

.sxp LI:hover {
    border-color: #C80002;
    box-shadow: 0 1px 8px rgba(200,0,2,0.15);
    background: #FFF8F8;
}

.sxp LI B {
    background: #FFEEEE;
    display: block;
    float: left;
    font-weight: normal;
    margin-right: 15px;
    text-align: center;
    width: 80px;
    color: #C80002;
    border-radius: 3px 0 0 3px;
    font-size: 13px;
    margin-left: 0px;
    padding-left: 0px;
    border-right: 1px solid #FFD6D6;
}

.sxp LI a {
    color: #555;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    display: block;
    padding-right: 10px;
}

.sxp LI a:hover {
    color: #A00000;
}

.sxp LI a:before {
    content: "→";
    margin-right: 8px;
    color: #E74C3C;
    font-weight: bold;
}
.sxp LI:nth-child(1) a:before {
    content: "←";
}

/* ==================== 分页导航增强样式 ==================== */
.wp-pagenavi {
    clear: both;
}

.wp-pagenavi a,
.wp-pagenavi span {
    border-right: #bfbfbf 1px solid;
    padding-right: 5px;
    border-top: #bfbfbf 1px solid;
    padding-left: 5px;
    padding-bottom: 3px;
    margin: 2px;
    border-left: #bfbfbf 1px solid;
    padding-top: 3px;
    border-bottom: #bfbfbf 1px solid;
    text-decoration: none;
}

.wp-pagenavi a:hover {
    border-left-color: #000;
    border-bottom-color: #000;
    border-top-color: #000;
    border-right-color: #000;
}

.wp-pagenavi span.current {
    border-color: #000;
    font-weight: bold;
}
