﻿@charset "utf-8";
/* 整个滚动条 */
::-webkit-scrollbar {
    width: 10px; /* 滚动条宽度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* 轨道背景色 */
    border-radius: 5px; /* 圆角 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #888; /* 滑块颜色 */
    border-radius: 5px; /* 圆角 */
    border: 2px solid #f1f1f1; /* 滑块边框 */
}

/* 滑块悬停时 */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
body{min-width:1200px;background:#fff;}
.header{width:100%; height:210px; background:url(../images/jyb_top_background.jpg) top center no-repeat;}
.container{width:1200px; margin:0 auto; position:relative;}
.container_col{ background:#fff; padding:10px;}
#weather{position:absolute; left:0; top:10px; font-size:12px; color:#fff; line-height:24px;}
.toptxt{position:absolute; right:0; top:10px; font-size:12px; color:#fff; line-height:24px;}
.toptxt a{font-size:12px; color:#fff; line-height:24px; padding:0 10px;}
.toptxt a:hover{color:#FF0;}
.logo{width:336px; height:112px; position:absolute; left:15px; top:60px;}
.search{width:274px; height:30px; padding:6px 96px 6px 10px; background:#fff; position:absolute; right:15px; top:100px; border-radius:4px; overflow:hidden;}
.ipt-sea{height:30px; width:100%; border:0; outline:none; line-height:30px; color:#333; font-size:14px;}
.search a{display:block; width:90px; height:42px; background:#165f9e; color:#fff; line-height:42px; text-align:center; font-size:14px; transition:all .3s ease; position:absolute; right:0; top:0;}
.search a:hover{background:#165f9e;}

.nav{width:1220px; margin:0 auto; height:60px; background:#165f9e;}
.nav li{width:173px; float:left; height:60px; position:relative;}
.nav li a{display:block; text-align:center; line-height:60px; font-size:18px; color:#fff; transition:all .3s ease;}
.nav li a:hover,.nav li.active a{background:#ee9439; color:#fff;}
#navul li ul{display:none;position:absolute;z-index:999; left:0; top:60px;}
#navul li.navmoon{background:#004f7a;}
#navul li.navmoon a,#navul li.active a{color:#fff;}
#navul li.navhome a:hover{color:#ffba00;}
#navul li.navmoon ul{display:block;}
#navul li.navmoon ul li{background:#004f7a; height:40px; line-height:40px; border-top:1px solid #004870;}
#navul li.navmoon ul a{display:block;height:40px;line-height:40px; font-size:14px;}
#navul li.navmoon ul a:hover{color:#fff;}

.box_p { border: #ccc 1px dashed; text-align: center; padding: 5px 0; margin: 0 30px 10px 30px; color: #999; }
/**查询模快*/

/**new**/
.search-div {
    margin: 0;
    padding: 0;
    background-image: url(../images/search_bg.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
-moz-background-size: 100% 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.search-container {
    display: flex;
    width: 60%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.search-input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

.search-button {
    background-color: #ee9439; /* 橙色按钮 */
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.search-input::placeholder {
  color: #999; /* 灰色 */
  opacity: 1;
}

/* 浏览器兼容性处理 */
.certificate-popup {
    padding: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    
    margin: 0 auto;
}

.certificate-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.seal-container {
    position: absolute;
    top: 15px;
    right: 15px;
    animation: sealStamp 0.6s ease-in-out;
}

.dynamic-seal {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
    transform: rotate(5deg);
    opacity: 0.9;
}

@keyframes sealStamp {
    0% {
        transform: scale(3) rotate(15deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(-5deg);
        opacity: 0.7;
    }
    100% {
        transform: scale(1) rotate(5deg);
        opacity: 0.9;
    }
}

.certificate-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 12px;
}

.certificate-header h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.certificate-info {
    max-width: 580px;
    margin: 0 auto 15px auto;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 80px;
    font-weight: 600;
    color: #555;
    font-size: 13px;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.3;
}

.info-value.highlight {
    color: #e74c3c;
    font-weight: 600;
    font-size: 15px;
}

.certificate-image {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

.certificate-image img {
    max-width: 80%;
   
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.certificate-footer {
    position: relative;
    margin-top: 10px;
}

.watermark {
    position: absolute;
    bottom: -5px;
    right: 0;
    font-size: 11px;
    color: rgba(0,0,0,0.08);
    font-weight: bold;
    letter-spacing: 2px;
}

/* 浏览器兼容性处理 */
.search-input::-webkit-input-placeholder { color: #999; }
.search-input::-moz-placeholder { color: #999; opacity: 1; }
.search-input:-ms-input-placeholder { color: #999; }
.search-input:-moz-placeholder { color: #999; }
.search-button:hover {
    background-color: #165f9e;
}
/*报告公示*/
.container {
    max-width: 1200px;
    margin: 0 auto;
  
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 28px;
}

.mnews-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mnews-card {
    background: white;
    
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mnews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 报告卡片样式 */
.report-card {
    position: relative;
    height: 180px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    
    /* 修正背景图片设置 */
    background: url(../images/bggs.jpg) no-repeat center center;
    background-size: cover;
    /* 或者使用 contain，根据你的需求选择 */
    /* background-size: contain; */
}

.report-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* 报告信息样式 */
.report-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 10px 15px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-date {
    color: #f0f0f0;
}

.report-download {
    color: #4fc3f7;
    text-decoration: none;
    cursor: pointer;
}

.report-download:hover {
    text-decoration: underline;
}

/* 鼠标悬停蒙版效果 */
.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5891d;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.report-code {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.report-card:hover .report-overlay {
    opacity: 1;
}

/* 新闻内容样式 */
.mnews-content {
    padding: 15px;
}

.mnews-title {
    margin-bottom: 10px;
}
/* 最新标签样式 */
.new-tag {
  display: inline-block;
  background-color: #e74c3c; /* 鲜红色 */
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.mnews-title a {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.mnews-title a:hover {
    color: #1e88e5;
}

.mnews-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height:40px;
}

.mnews-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.mnews-category {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
}
/*报告公示*/

.vr-container {
    background: url('../images/zyxb_dcsj.png') center/cover no-repeat;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    min-height: 200px;
}





.news-con h3 { height: 40px; line-height: 40px; padding-left: 30px; font-size: 14px; color: #333;}
.sinput{
border: 1px solid #e5e5e6;
    width: 249px;
    height: 40px;
    padding-left: 10px;
    font-size: 15px;
    margin: 10px 0px 0px 10px;
    font-weight: bold;
    color: red;
}
.sveriinput{border:1px solid #e5e5e6;width:150px;height:30px;float:left;margin:10px 10px 0px 0px;padding-left:10px;}
.verimg{margin-top:10px;float:left;}
.isbutton{width: 100px;height: 40px;border: 1px solid #ee9439;background:#ee9439;color: #fff;font-weight: bold;font-size;18px;margin-top:10px;}

.winstyle125407 {
    width: 1200px;
}




.wrap{
	width: 1200px;
	height: 170px;
	position: relative;
	overflow: hidden;
}

.wrap ul{
	overflow: hidden;
	position:absolute;
	left: 0;
	top: 0;
	_height:1px;
}

.wrap ul li{
	float: left;
	width: 260px;
	height:165px;
	margin-left:5px;
}
.xyfc{
	height: 45px;
	margin:15px auto;

}
.xyfc h2{
	height: 45px;
	line-height: 45px;
	width: 420px;
	margin:0 auto;
}
.xyfc h2 em,.xyfc h2 span{
	display: block;
	float:left;
	font-size: 16px;
}
.xyfc h2 em{
	width: 130px;
	height: 25px;
	line-height: 25px;
	border-bottom: 1px solid #f0f0f0;
}
.xyfc h2 span{
	color: #165f9e;
	padding:0 15px;
}



table {
    border-spacing: 0;
    border-collapse: collapse;
    posio
}

.table {
    
    max-width: 100%;
    font-size: 15px;
    text-align: left;
    position:relative;
}
td.tdtit{background-color: #F0F7FC;}
.table td {
    padding: 10px;
    border: 1px solid #E4EEF6 !important;
    font-weight: normal;
    vertical-align: middle;
}
.table .hig{font-size:15px;color:#0084ff;}
.gfrz{z-index: 999;position: absolute;right: 30px;top: 10px;width: 80px;height: 80px;}

        


.side{position:fixed;width:78px;right:0;top:50%;margin-top:-200px;z-index:100;border:1px solid #e0e0e0;background:#fff;border-bottom:0}
.side ul li{width:78px;height:78px;float:left;position:relative;border-bottom:1px solid #e0e0e0;color:#333;font-size:14px;line-height:38px;text-align:center;transition:all .3s;cursor:pointer}
.side ul li:hover{background:#f67524;color:#fff}
.side ul li:hover a{color:#fff}
.side ul li i{height:25px;margin-bottom:1px;display:block;overflow:hidden;background-repeat:no-repeat;background-position:center center;background-size:auto 25px;margin-top:14px;transition:all .3s}
.side ul li i.bgs1{background-image:url(../images/right_pic5.png)}
.side ul li i.bgs2{background-image:url(../images/right_pic7.png)}
.side ul li i.bgs3{background-image:url(../images/right_pic2.png)}
.side ul li i.bgs4{background-image:url(../images/right_pic1.png)}
.side ul li i.bgs5{background-image:url(../images/right_pic3.png)}
.side ul li i.bgs6{background-image:url(../images/right_pic6_on.png)}
.side ul li:hover i.bgs1{background-image:url(../images/right_pic5_on.png)}
.side ul li:hover i.bgs2{background-image:url(../images/right_pic7_on.png)}
.side ul li:hover i.bgs3{background-image:url(../images/right_pic2_on.png)}
.side ul li:hover i.bgs4{background-image:url(../images/right_pic1_on.png)}
.side ul li:hover i.bgs5{background-image:url(../images/right_pic3_on.png)}
.side ul li .sidebox{position:absolute;width:78px;height:78px;top:0;right:0;transition:all .3s;overflow:hidden}
.side ul li.sidetop{background:#f67524;color:#fff}
.side ul li.sidetop:hover{opacity:.8;filter:Alpha(opacity=80)}
.side ul li.sideewm .ewBox.son{width:238px;display:none;color:#363636;text-align:center;padding-top:235px;position:absolute;left:-240px;top:0;background-image:url(../images/weixin.jpg);background-repeat:no-repeat;background-position:center center;border:1px solid #e0e0e0}
.side ul li.sideetel .telBox.son{width:240px;height:237px;display:none;color:#fff;text-align:left;position:absolute;left:-240px;top:-79px;background:#f67524}
.side ul li.sideetel .telBox dd{display:block;height:118.5px;overflow:hidden;padding-left:82px;line-height:24px;font-size:18px}
.side ul li.sideetel .telBox dd span{display:block;line-height:28px;height:28px;overflow:hidden;margin-top:32px;font-size:18px}
.side ul li.sideetel .telBox dd.bgs1{background:url(../images/right_pic8.png) 28px center no-repeat;background-color:#e96410}
.side ul li.sideetel .telBox dd.bgs2{background:url(../images/right_pic9.png) 28px center no-repeat}
.side ul li:hover .son{display:block!important;animation:fadein 1s}
@keyframes fadein{from{opacity:0}
to{opacity:1}
}








.linksbox{margin:20px 0; border:1px solid #efefef}
.txtlisttit {height: 40px; background:#fafafa;position: relative; }
.txtlisttit.linktit span{background: #165f9e; color: #fff; font-size:15px; font-weight:bold; display:block; width:100px; height:40px; line-height:40px; text-align:center; position:absolute; left:0; top:-1px;}
.tab-nav{position: absolute; left: 100px; top: 0;}
.tab-nav a{float: left; line-height: 32px; font-size: 14px; margin: 0 20px;}
.tab-nav a.current{color: #FF080D;}
.linkcon{height:45px; margin:10px; overflow:overflow;line-height:45px;font-size:14px;}
.linkslist li{float: left; margin:1px 20px;}
.linkslist li a{display:inline-block; line-height:25px;}



.news-notice{ margin:20px 0;}
.indnews{width: 560px; height: 362px; float: left;}
.news-pic{width: 560px; height: 362px;}
.news-pic,.news-pic img{ width: 560px; height: 362px; overflow: hidden;}

.news-notice .news-txt{width:620px; height: 362px; float: right;}
.news-txt{border:1px solid #efefef;}
.news-title{height:38px; background:#fafafa; border-bottom:1px solid #efefef; line-height:38px; position:relative;}
.news-title .name{position:absolute; left:-1px; top:-1px; height:39px; background:#165f9e; color:#fff; text-align:center; line-height:39px; font-size:15px; padding:0 15px; font-weight:bold;}
.news-name.tab-nav{position:absolute; left:-1px; top:-1px; height:39px; }
.news-name.tab-nav a{display:block; float:left; height:39px; line-height:39px;color:#333; text-align:center; line-height:39px; font-size:15px; padding:0 15px; margin:0; position:relative;}
.news-name.tab-nav a.current{ background:#165f9e; color:#fff; font-weight:bold;}
.news-name.tab-nav a i{width:9px; height:5px; background:url(../images/jtx.png) no-repeat; left:10px; bottom:-5px; display:none;}
.news-name.tab-nav a.current i{display:block;}
.news-title .name i{width:9px; height:5px; background:url(../images/jtx.png) no-repeat; left:10px; bottom:-5px; display:block;}
.news-title .more{position:absolute; right:10px; line-height:38px; top:0; font-size:12px; color:#666; transition:all .3s ease;}
.news-title .more:hover{color:#165f9e;}
.newslist{display:block; padding:10px 12px;}
.hotnews{margin:12px 12px 0 12px;}
.hotnews h1{font-size:16px; color:#165f9e; text-align:center; margin:0 10px; height:30px; line-height:30px;
word-break:break-all;
display:-webkit-box;
-webkit-line-clamp:1;
-webkit-box-orient:vertical;
overflow:hidden;}
.hotnews .hotcon{margin-top:12px; word-break:break-all;
display:-webkit-box;
-webkit-line-clamp:3;
-webkit-box-orient:vertical;
overflow:hidden;}
.hotnews .hotcon a{ color:#999; line-height:24px; font-size:14px;}
.hotnews .hotcon a:hover{color:#0594c9;}
.newslist li{border-bottom:1px dotted #dedede; position:relative; padding:0 80px 0 14px; background:url(../images/jiantou.png) 2px  15px no-repeat;}
.newslist li a{display:block; height:36px; width:100%; line-height:36px; font-size:14px; color:#666;word-break:break-all;
display:-webkit-box;
-webkit-line-clamp:1;
-webkit-box-orient:vertical;
overflow:hidden;}
.newslist li span{position:absolute; right:0; top:0; line-height:36px; color:#bbb; text-align:center;}
.newslist li:last-child{border:0;}

.fwzn{margin:20px 0; height:85px; overflow:hidden;text-align:center;}
.fwzn .tit{width:65px; background:#165f9e; text-align:center; font-size:16px; color:#fff; height:115px; padding-top:25px; float:left;}
.fwzn .iconlist{float:left; width:1135px;}
.fwzn .iconlist a{display:block; width:162px; text-align:center; float:left; color:#333; font-size:14px; line-height:30px;}
.fwzn .iconlist a .pic{width:82px; height:82px; border-radius:50%; margin:20px auto auto auto; transition:all .3s ease;}
.fwzn .iconlist a.icon1 .pic{background:#eacd75;}
.fwzn .iconlist a.icon2 .pic{background:#93d884;}
.fwzn .iconlist a.icon3 .pic{background:#f57b7b;}
.fwzn .iconlist a.icon4 .pic{background:#b19de5;}
.fwzn .iconlist a.icon5 .pic{background:#60dcb5;}
.fwzn .iconlist a.icon6 .pic{background:#7ebfe2;}
.fwzn .iconlist a.icon7 .pic{background:#dec67c;}

.fwzn .iconlist a.icon1:hover .pic{background:#165f9e;}
.fwzn .iconlist a.icon2:hover .pic{background:#165f9e;}
.fwzn .iconlist a.icon3:hover .pic{background:#165f9e;}
.fwzn .iconlist a.icon4:hover .pic{background:#165f9e;}
.fwzn .iconlist a.icon5:hover .pic{background:#165f9e;}
.fwzn .iconlist a.icon6:hover .pic{background:#165f9e;}
.fwzn .iconlist a.icon7:hover .pic{background:#165f9e;}

.col-box{margin:20px 0;}
.news-txt.col-3{width:388px; height:280px; overflow:hidden; float:left; margin-right:15px;}
.news-txt.col-3.last{margin-right:0;}
.smalllist{margin-left:100px;}
.smalllist a{line-height:39px; font-size:14px; color:#004f7a; margin:0 5px;}
.smalllist a:hover{color:#0594c9;}

.col-2-l{}
.col-2-l .tit{height:40px; background:url(../images/bmicon.png) 0 9px no-repeat; padding-left:30px; line-height:40px; color:#333; font-size:16px;}
.col-2-l .list a{float:left; text-align:center; color:#fff; transition:all .3s ease;}
.col-2-l .list .ct{width:162px; height:120px; float:left; margin-right:11px;}
.col-2-l .list .ct.last{margin-right:0;}
.col-2-l .list a.color_bj .pic{margin:24px auto 20px auto;}
.col-2-l .list a.color_bj{width:162px; height:120px; background:#e75603;}
.col-2-l .list a.color-1{background:#80ba4a;}
.col-2-l .list a.color-2{background:#e75603;}
.col-2-l .list a.color-3{background:#288fd2;}
.col-2-l .list a.color-4{background:#f3b548;}
.col-2-l .list a.color-5{background:#2876a2;}
.col-2-l .list a.color-6{background:#2bbe40;}
.col-2-l .list a.color-7{background:#b363c7;}
.col-2-l .list a.color-1:hover,.col-2-l .list a.color-2:hover,.col-2-l .list a.color-3:hover,.col-2-l .list a.color-4:hover,.col-2-l .list a.color-5:hover{background:#165f9e;}

.col-2-r{}
.gsht{float:left; width:400px;}
.col-2-r .tit{height:40px; background:url(../images/sficon.png) 0 9px no-repeat; padding-left:30px; line-height:40px; color:#333; font-size:16px; float:left; }
.sfbox{padding:0 10px 15px 5px; height:213px;}
.sftxt{float:left; width: 424px;height: 215px; position:relative;}
.sftxt .info{ height:198px; line-height:22px; font-size:12px; color:#666;
word-break:break-all;
display:-webkit-box;
-webkit-line-clamp:9;
-webkit-box-orient:vertical;
overflow:hidden;}
.sftxt a{display:block; position:absolute; left:0; bottom:-2px; text-align:center; color:#F30;}
.sftxt a:hover{color:#39F;}
.jisuan{float:right; padding-left:30px; width:270px; border-left:1px dashed #efefef; height:213px; }
.jisuan h1{color:#165f9e; line-height:30px; font-size:15px;}
.jsbox{position:relative; padding-left:65px; margin-top:8px;}
.jsbox span{position:absolute; left:0; top:0; line-height:27px; display:block; width:65px; color:#7e7e7e;}
.jsbox .jsq{border:1px solid #f0f0f0; height:19px; padding:3px 3px 3px 10px;border-radius:2px;}
.jsbox .jsq .ipt-jsq{border:0; height:19px; line-height:19px; width:100%; outline:none;}
.jsbox .jsq a{display:block; width:42px; height:19px; text-align:center; line-height:19px; background:#55aeec; position:absolute; top:4px; right:4px; color:#fff; border-radius:2px;}
.jsjg{background:#f0f0f0; padding:4px 8px; margin-top:10px; position:relative;}
.jsjg .tab{line-height:28px; border-bottom:1px solid #e2e2e2; color:#6a6a6a; height:28px; overflow:hidden;}
.jsjg .tab span{float:right;}
.jsjg .tab.last{border:0;}
.jsjg:before{content:''; width:9px; height:5px; background:url(../images/jtt.png) no-repeat; display:block; position:absolute; right:20px; top:-5px;}
.jisuan .smtxt{color:#55aeec; line-height:40px;}
.xxlinks {height:24px; overflow:hidden;}
.xxlinks a{color:#F33; line-height:24px;}
.xxlinks a:hover{color:#55aeec; text-decoration:underline;}

.newslist.htlist{padding:0; width:360px;}


.col-4{width:289px; float:left; margin-right:12px; border:1px solid #efefef;}
.col-4.last{margin-right:0;}
.news-title .name2{float:left; line-height:39px; font-size:15px; font-weight:bold; color:#165f9e; padding-left:20px; background:url(../images/shu.png) 8px 11px no-repeat;}


.ft-menu{height:230px; width:100%; background:#3b7abd}
.menu{width:1000px; float:left; margin-top:40px;}
.menu dl{float:left; margin-right:20px; color:#fff;}
.menu dl dt{font-size:15px;}
.menu dl dd{margin-top:0px;}
.menu dl dd.last{margin-top:-3px;}
.menu dl dd a{display:block; font-size:12px; line-height:24px; color:#A0E3FF;}
.menu dl dd.last p{font-size:14px; line-height:26px;}
.menu dl dd a:hover{color:#ee9439;}
.menu dl.last{ margin-left:100px;}
.menu dl dd p{color:#fff; line-height:24px;}
.ewm{float:right; width:125px; text-align:center; line-height:30px;margin-right: 70px; margin-top:40px; color:#fff;}


.cop{font-size:14px; color:#fff; height:50px; line-height:50px; background:#165f9e;}

.mg-t-b{margin:20px auto;}
.page-left{width: 255px; float: left;background:#fff;}
.page-right{width: 900px; float: right; margin-right:15px;min-height:400px;}
.pagelist .listbox{border:1px solid #efefef;}
.pagelist h1{ color: #fff; height: 45px; line-height: 45px; font-size: 18px; font-weight: 600; background: #165f9e; padding-left: 20px; margin-bottom: 5px;}
.pagelist li{border-top:1px solid #efefef; border-bottom:1px solid #efefef; margin-top:-1px;background:#fafafa;}
.pagelist li a{height: 40px; line-height: 40px; display: block; font-size: 14px; color: #333; padding-left:20px;}
.pagelist li a:hover,.pagelist li.active>a{ font-weight:bold;border-left:4px solid #ee9439;color:#165f9e;}

.pagelist li .dropdown{display:none;}
.pagelist li.active .dropdown{display:block;}
.pagelist li .dropdown li{ margin-left:10px; margin-right:10px;}
.pagelist li .dropdown li a{background:#fff; padding-left:40px;}
.pagelist li .dropdown li.active a{color:#b61412;}
.pagelist li .dropdown li:last-child{border-bottom:0;}
.hotarticl{margin-top:20px;}
.hottit{border-bottom:1px solid #efefef; line-height:40px; font-size:16px; color:#ee9439;font-weight:bold; margin:12px 12px 0 12px;}
.pagelujing{height:40px; border-bottom:1px solid #efefef; position:relative;}
.pagelujing .name{position:absolute; left:0; top:0; height:40px; border-bottom:2px solid #ee9439; line-height:40px; font-size:16px; font-weight:bold;}
.pagelujing span{position:absolute; right:0; line-height:40px; color:#888;}
.news-txt.ny,.newslist.ny{border:0; padding:0;}
.news-txt.ny{min-height:500px;}
.newslist.ny li:last-child {
   border-bottom:1px dotted #efefef;
}
.liuyantab{border:1px solid #f5f5f5; background:#f8f8f8; margin-top:20px; padding:20px;}
/*分页*/

/*分页代码*/


.kkpager{
	clear:both;
	height:30px;
	line-height:30px;
	margin-top:20px;
	color:#999999;
	font-size:14px;
	margin-left:-3px;
	padding-bottom:2px;
	text-align:center;
}
.kkpager a{
	padding:4px 8px;
	margin:10px 3px;
	font-size:12px;
	border:1px solid #DFDFDF;
	background-color:#FFF;
	color:#9d9d9d;
	text-decoration:none;
}
.kkpager span{
	font-size:14px;
}
.kkpager span.disabled{
	padding:4px 8px;
	margin:10px 3px;
	font-size:12px;
	border:1px solid #DFDFDF;
	background-color:#FFF;
	color:#DFDFDF;
}
.kkpager span.curr{
	padding:4px 8px;
	margin:10px 3px;
	font-size:12px;
	border:1px solid #DFDFDF;
	background-color:#000;
	color:#FFF;
}
.kkpager a:hover{
	background-color:#e5effa;
	border:1px solid #66a1e2;
}
.kkpager span.normalsize{
	font-size:12px;
}
#kkpager_gopage_wrap{
	display:inline-block;
	width:44px;
	height:18px;
	border:1px solid #DFDFDF;
	margin:0px 1px;
	padding:0px;
	position:relative;
	left:0px;
	top:5px;
}
#kkpager_btn_go {
	width:44px;
	height:20px;
	line-height:20px;
	padding:0px;
	font-family:arial,宋体,sans-serif;
	text-align:center;
	border:0px;
	background-color:#0063DC;
	color:#FFF;
	position:absolute;
	left:0px;
	top:-1px;
	display:none;
}
#kkpager_btn_go_input{
	width:42px;
	height:16px;
	text-align:center;
	border:0px;
	position:absolute;
	left:0px;
	top:0px;
	outline:none;
}


.biaoti{font-size: 18px; color: #333;  text-align: center; margin: 0 20px; font-weight: 600; margin-top:30px;}
.sshuomign{color: #888; font-size: 12px; line-height: 30px; text-align: center;}
.sshuomign span{margin: 0 10px;}
.article_txt{font-size: 14px; line-height: 28px; color: #454545; margin-top: 20px; overflow:hidden; padding: 10px;}

.tcdPageCode{padding: 15px 20px;text-align: left;color: #ccc;text-align:center; margin-top: 30px;}
.tcdPageCode a{display: inline-block;color: #428bca;display: inline-block;height: 25px;	line-height: 25px;	padding: 0 10px;border: 1px solid #ddd;	margin: 0 2px;border-radius: 4px;vertical-align: middle;}
.article_txt{font-size: 14px; line-height: 28px; color: #454545; margin-top: 20px; overflow:hidden;text-align:center}
.article_txt img{height:900px;width:750px;  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);}
.tcdPageCode a:hover{text-decoration: none;border: 1px solid #428bca;}
.tcdPageCode span.current{display: inline-block;height: 25px;line-height: 25px;padding: 0 10px;margin: 0 2px;color: #fff;background-color: #428bca;	border: 1px solid #428bca;border-radius: 4px;vertical-align: middle;}
.tcdPageCode span.disabled{	display: inline-block;height: 25px;line-height: 25px;padding: 0 10px;margin: 0 2px;	color: #bfbfbf;background: #f2f2f2;border: 1px solid #bfbfbf;border-radius: 4px;vertical-align: middle;}