@charset "utf-8";

/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体，页面整体宽度最小为主体宽度避免移动强制视窗980px*/
html {
  background: white;
  color: black;
  min-width: 1200px;
}

/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
  font: 16px "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  color: #2e2e2e;
}
input,
select,
textarea {
  font-size: 100%;
}

/* 去掉 table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ie bug：th 不继承 text-align */
th {
  text-align: inherit;
}

/* 去除默认边框 */
fieldset,
img {
  border: none;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
  border: none;
}

/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: none;
  font-variant: normal;
}

/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}

/* 去掉列表前的标识，li 会继承 */
ol,
ul {
  list-style: none;
}

/* 对齐是排版最重要的因素，别让什么都居中 */
caption,
th {
  text-align: left;
}

/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
q:before,
q:after {
  content: "";
}

/* 统一上标和下标 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
  color: #666666;
  cursor: pointer;
}

/* 去除 ie6 & ie7 焦点点状线 */
a:focus,
*:focus {
  outline: none;
}

/* 清除浮动 */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  overflow: hidden;
}
.clearfix {
  zoom: 1; /* for ie6 & ie7 */
}
.clear {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}

/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
  display: none;
}
.block {
  display: block;
}

/* 设置浮动，减少浮动带来的 bug */
.fl,
.fr {
  display: inline;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.fn {
  float: none;
}

/*div居中*/
.center {
  margin: 0 auto;
}

/*text*/
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.fwb {
  font-weight: bold;
}
.fwn {
  font-weight: normal;
}
.pr {
  position: relative;
}
.pb {
  position: absolute;
}
.vat {
  vertical-align: top;
}
.vam {
  vertical-align: middle;
}
.vab {
  vertical-align: bottom;
}
.nowrap {
  white-space: nowrap;
  word-break: normal;
}
.fs13 {
  font-size: 13px;
}
.fs14 {
  font-size: 14px;
}
.fs15 {
  font-size: 15px;
}
.fs16 {
  font-size: 16px;
}
.fs18 {
  font-size: 18px;
}
.fs20 {
  font-size: 20px;
}
.fs24 {
  font-size: 24px;
}
.fs30 {
  font-size: 30px;
}
.fs48 {
  font-size: 48px;
}

/*padding(p[t,r,b,l][number])*/
.p0 {
  padding: 0px;
}
.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p25 {
  padding: 25px;
}
.p60 {
  padding: 60px;
}
.pt0 {
  padding-top: 0px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt50 {
  padding-top: 50px;
}

/*20130710*/
.pl0 {
  padding-left: 0px;
}
.pl5 {
  padding-left: 5px;
}
.plr5 {
  padding: 0 5px;
}
.plr10 {
  padding: 0 10px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl50 {
  padding-left: 50px;
}
.pb0 {
  padding-bottom: 0px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb60 {
  padding-bottom: 60px;
}

/*20130710*/
.pr0 {
  padding-right: 0px;
}
.pr5 {
  padding-right: 5px;
}
.plr5 {
  padding: 0 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pb30 {
  padding-bottom: 30px;
}

/*margin*/
.m0 {
  margin: 0;
}
.m5 {
  margin: 5px;
}
.m10 {
  margin: 10px;
}
.m15 {
  margin: 15px;
}
.m20 {
  margin: 20px;
}
.m25 {
  margin: 25px;
}
.mt0 {
  margin-top: 0px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt40 {
  margin-top: 40px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt8 {
  margin-top: 8px;
}
.ml75 {
  margin-left: 75px;
}
.ml0 {
  margin-left: 0px;
}
.ml5 {
  margin-left: 5px;
}
.mlr5 {
  margin: 0 5px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.ml50 {
  margin-left: 50px;
}
.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mr0 {
  margin-right: 0px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.ml10 {
  margin-left: 10px;
}
.mlr10 {
  margin: 0 10px;
}
.mtb10 {
  margin: 10px 0;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.ml16 {
  margin-left: 16px;
}
.mt2 {
  margin-top: 2px;
}
.mt30 {
  margin-top: 30px;
}
.mt13 {
  margin-top: 13px;
}
.mr30 {
  margin-right: 30px;
}
.mb8 {
  margin-bottom: 8px;
}
.ma10 {
  margin: 10px;
}

/*width*/
.w100 {
  width: 100px;
}
.w80 {
  width: 80px;
}
.w140 {
  width: 140px;
}
.w240 {
  width: 240px;
}
.w750 {
  width: 750px;
}
.w225 {
  width: 225px;
}
.w120 {
  width: 120px;
}
.w204 {
  width: 204px;
}
.w200 {
  width: 200px;
}
.w285 {
  width: 285px;
}
.w350 {
  width: 350px;
}
.w1100 {
  width: 1100px;
}
.w1200 {
  width: 1200px;
}

/*** Color ***/
.c386 {
  color: #3864a7;
}
.cf67 {
  color: #f67a00;
}
.cred {
  color: #f00;
}
.c466 {
  color: #4668a0;
}
.c4b4 {
  color: #4d4d4d;
}
.c345 {
  color: #345185;
}
.c747 {
  color: #74767a;
}
.c1e6 {
  color: #1e65bd;
}
.ar {
  font-family: Arial, Helvetica, sans-serif;
}
.cff0 {
  color: #ff0000;
}
.cfe9 {
  color: #fe933a;
}
.cc08 {
  color: #c08e21;
}
.cbab {
  color: #bababa;
}
.e65 {
  color: #1e65bd;
}
.c000 {
  color: #000;
}
.cup {
  cursor: pointer;
}
.ovh {
  overflow: hidden;
}
.cbe9 {
  color: #be9e7f;
}
.c666 {
  color: #666464;
}
.c89 {
  color: #898989;
}
.cfff {
  color: #fff;
}

/*** TRS内容 ***/
.TRS_Editor img,
.TRS_Editor table {
  max-width: 100%;
}
.TRS_Editor {
  text-align: justify;
}
.TRS_Editor p,
.TRS_Editor div {
  margin-bottom: 10px;
}

/*** 指南列表页+公共 ***/
.gk-wrapper {
  margin: 0 auto;
  width: 1280px;
  background: url(/xxgk/images/bg1-200729.png) top center no-repeat;
  /* min-height: 1800px; */
}
.gk-tb {
  padding-top: 80px;
  padding-bottom: 40px;
}
.gk-tb-1 {
  width: 780px;
  text-align: right;
}
.gk-tb-xian {
  width: 490px;
  height: 1px;
  background-color: #fff;
  margin-top: 28px;
  float: right;
}
.gk-tb-mc {
  float: right;
  font-size: 26px;
  font-weight: bold;
  line-height: 2em;
  color: #fff;
}
.gk-tb-link a {
  background: #0058a8;
  color: #fff;
  font-size: 16px;
  padding: 5px 15px;
  float: right;
}
.gk-main {
  width: 1100px;
  background: #fbfbfb;
  padding: 36px;
}
.gk-main .search {
  margin-top: 55px;
  margin-bottom: 77px;
}

.gk-main .search .input {
  display: inline-block;
  width: 510px;
  height: 50px;
  background: rgb(255, 255, 255);
  border-radius: 9px;
  border: 1px solid #0058a8;
  padding-left: 14px;
  padding-right: 9px;
  margin-left: 18px;
  margin-right: 18px;
}

.gk-main .search .input .srk {
  height: 48px;
  line-height: 48px;
  border: none;
  width: 435px;
}

.gk-main .search .input .fdj {
  background: url(/xxgk/images/ico1-200729.png) no-repeat right center;
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  background-size: 85%;
}

.gk-main .search .zxian {
  width: 240px;
  height: 1px;
  background: #0058a8;
  float: left;
  margin-top: 25px;
}

.gk-main .search .yxian {
  width: 240px;
  height: 1px;
  background: #0058a8;
  float: right;
  margin-top: 25px;
}

.neirong .left {
  width: 240px;
  float: left;
}

.neirong .left ul .li1 {
  margin-bottom: 15px;
  float: left;
}

.neirong .left ul .li1 .a {
  height: 70px;
  width: 240px;
  display: block;
  background: #f2f2f2;
}

.neirong .left ul .li1 .a:hover {
  background: #0058a8;
}

.neirong .left ul .li1 .a:hover div {
  color: #fff;
}

.neirong .left ul .li1 .on {
  background: #0058a8;
}

.neirong .left ul .li1 .on div {
  color: #fff;
}

.neirong .left ul .li1 .img1 {
  width: 34px;
  margin-left: 20px;
  height: 34px;
  float: left;
  margin-top: 18px;
  margin-right: 20px;
}

.neirong .left ul .li1 .xtb1 {
  background: url(/xxgk/images/icon_zhinan_o-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .on .xtb1 {
  background: url(/xxgk/images/icon_zhinan_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .a:hover .xtb1 {
  background: url(/xxgk/images/icon_zhinan_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .xtb2 {
  background: url(/xxgk/images/icon_zhidu_o-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .a:hover .xtb2 {
  background: url(/xxgk/images/icon_zhidu_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .on .xtb2 {
  background: url(/xxgk/images/icon_zhidu_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .xtb3 {
  background: url(/xxgk/images/icon_shenqing_o-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .a:hover .xtb3 {
  background: url(/xxgk/images/icon_shenqing_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .on .xtb3 {
  background: url(/xxgk/images/icon_shenqing_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .xtb4 {
  background: url(/xxgk/images/icon_nianbao_o-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .a:hover .xtb4 {
  background: url(/xxgk/images/icon_nianbao_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .on .xtb4 {
  background: url(/xxgk/images/icon_nianbao_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .xtb5 {
  background: url(/xxgk/images/icon_shenqing_o-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .a:hover .xtb5 {
  background: url(/xxgk/images/icon_shenqing_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .on .xtb5 {
  background: url(/xxgk/images/icon_shenqing_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .xtb7 {
  background: url(/xxgk/images/icon_zixun_o-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .a:hover .xtb7 {
  background: url(/xxgk/images/icon_zixun_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .on .xtb7 {
  background: url(/xxgk/images/icon_zixun_w-200729.png) no-repeat center;
  background-size: 100%;
}

.neirong .left ul .li1 .div {
  width: 118px;
  height: 60px;
  font-size: 23px;
  color: #394351;
  line-height: 30px;
  float: left;
  margin-top: 5px;
  margin-bottom: 5px;
}

.neirong .left ul .li1 .div p {
  font-size: 23px;
  line-height: 30px;
  height: 60px;
  vertical-align: middle;
  display: table-cell;
  font-style: normal;
  font-family: "Microsoft yahei", Arial;
}

.neirong .left ul .li1 .img2 {
  float: right;
  margin-top: 27px;
  margin-right: 16px;
  width: 16px;
  background: url(/xxgk/images/icon_plus_orange-200729.png) no-repeat;
  height: 16px;
  background-size: 100%;
}

.neirong .left ul .li1 .on .img2 {
  background: url(/xxgk/images/icon_miis_white-200729.png) no-repeat;
  background-size: 16px;
}

.neirong .left ul .li1 .xlnr {
  background: #fff;
  width: 100%;
  float: left;
  display: none;
}

.neirong .left ul .li1 .xlnr .biaoti:first-child {
  margin-top: 10px;
}

.neirong .left ul .li1 .xlnr .biaoti a {
  color: #333;
  display: block;
  font-family: "Microsoft yahei", Arial;
  font-style: normal;
}

.neirong .left ul .li1 .xlnr .biaoti {
  width: 240px;
  height: 32px;
  line-height: 32px;
  font-size: 15px;
  font-weight: bold;
  color: #394351;
  font-style: normal;
  display: block;
  font-family: "Microsoft yahei", Arial;
}
.neirong .left ul .li1 #nbxl .biaoti {
  padding-left: 62px;
  font-family: "Microsoft yahei", Arial;
}
.neirong .left ul .li1 .xlnr .on {
  background: rgb(255, 238, 223);
  color: rgb(255, 98, 0);
}

.neirong .left ul .li1 .xlnr .on span {
  background: #0058a8;
}

.neirong .left ul .li1 .xlnr .biaoti span {
  width: 3px;
  height: 3px;
  background: #c1c5ca;
  border-radius: 2px;
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
  margin-right: 8px;
}

.neirong .left ul .li1 .xlnr .biaoti p {
  font-size: 15px;
  display: inline-block;
  font-family: "Microsoft yahei", Arial;
  font-style: normal;
}

.neirong .left ul .li1 .xlnr .biaoti .img2 {
  float: right;
  width: 15px;
  height: 15px;
  margin-top: 7px;
  margin-right: 12px;
  background: url(/xxgk/images/xxgk_arrow_d_right.png) no-repeat center;
  background-size: 12px;
}

.neirong .left ul .li1 .xlnr ul {
  display: none;
}

.neirong .left ul .li1 .xlnr ul .li2:first-child {
  margin-top: 15px;
}

.neirong .left ul .li1 .xlnr ul .li2 {
  padding-left: 15px;
  font-size: 15px;
  color: rgb(57, 67, 81);
  line-height: 32px;
  border-left: 1px solid #ffa873;
  margin: 0px 15px;
}

.neirong .left ul .li1 .xlnr ul .li2 a:hover {
  color: #0058a8;
}

.neirong .right {
  width: 770px;
  float: right;
  margin-left: 18px;
  padding: 24px;
  background: #fff;
}

.neirong .right table {
  width: 100%;
}

.neirong .right table tr th {
  height: 40px;
  line-height: 40px;
  border-right: 1px solid #f2f2f2;
  background: rgb(246, 246, 246);
  border-top: 2px solid #0058a8;
}

.neirong .right table tr .th1 {
  width: 298px;
  text-align: left;
  padding-left: 18px;
}

.neirong .right table tr td {
  font-size: 14px;
  color: rgb(57, 67, 81);
  line-height: 19px;
  text-align: left;
  padding: 18px 7px;
  border-right: 1px solid #f2f2f2;
  position: relative;
}

.neirong .right table tr:nth-child(2n-1) {
  background: #f8f8f8;
}

.neirong .right table tr td .jieshao {
  display: none;
  width: 542px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0px 6px 0px rgba(255, 168, 115, 0.19);
  border: 1px solid rgb(255, 229, 214);
  position: absolute;
  z-index: 999;
  left: 0px;
  top: 74px;
  padding: 20px;
}

.neirong .right table tr td .jieshao p {
  font-size: 14px;
  font-weight: bold;
  color: rgb(57, 67, 81);
  line-height: 30px;
}

.neirong .right table tr td .jieshao span {
  font-weight: normal;
}

.neirong .right table tr td .jieshao .sjfh {
  position: absolute;
  top: -12px;
}
.ejbt {
  width: 100%;
  text-align: center;
}
.ejbt p {
  line-height: 40px;
  display: inline-block;
  color: #fff;
  padding: 20px 0;
  font-size: 26px;
  font-weight: bold;
  color: #0058a8;
}

.bmtit {
  width: 100%;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
  height: 21px;
  font-size: 16px;
  font-weight: bold;
  color: #0058a8;
  line-height: 21px;
  padding-left: 16px;
}
.bmtit a {
  width: 100%;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
  height: 21px;
  font-size: 16px;
  font-weight: bold;
  color: #0058a8;
  line-height: 21px;
}
.right .bumenlb table {
  border-left: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}
.right .bumenlb table tr td {
  width: 33.3%;
  font-size: 14px;
  line-height: 1.7em;
  text-align: left;
  padding: 8px 24px;
}

/*信息公开指南*/

.xxgkzn .biaoti {
  height: 42px;
  font-size: 32px;
  font-weight: bold;
  color: rgb(57, 67, 81);
  line-height: 42px;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 29px;
  font-family: "Microsoft yahei", Arial;
  font-style: normal;
}

.xxgkzn .content {
  padding: 0px 29px;
  height: 936px;
  overflow: hidden;
}

.xxgkzn .content {
  font-size: 16px;
  color: #000;
  line-height: 30px;
}

.xxgkzn .content p {
  font-size: 16px;
  color: #000;
  line-height: 30px;
}
.xxgkzn .content .TRS_Editor div {
  font-size: 16px;
  color: #000;
  line-height: 30px;
}
.xxgkzn .content h3 {
  font-weight: bold;
}

#ascrail2000 {
  width: 10px !important;
}
.xxgkzn .content {
  font-family: SimSun;
}
.xxgkzn .content .TRS_Editor {
  font-family: SimSun;
}
.TRS_Editor p,
.TRS_Editor span,
.TRS_Editor font {
  line-height: 30px;
  font-family: SimSun;
}

/* 公开制度 */
.gkzd {
    height: 666px;
    font-size: 16px;
    color: rgb(57, 67, 81);
    line-height: 60px;
    overflow: hidden
}

.gkzd ul li a:hover {
    color: #0058a8;
}

.gkzd ul li span {
float:right;
    color: #999999;
    margin-left: 5px
}

/* 主动公开 */
.zdgknr ul .li1{float:left;width:207px;height:112px;margin-left:28px;border:1px solid #D8D8D8;margin-bottom: 23px;position: relative;box-shadow: #d8d5d5 2px 2px 5px 1px;background:url(smz_gknrlb/xxgk/images/bg1-200729.png) no-repeat}
.zdgknr ul .li1:hover{background:url(/xxgk/images/smz_gknrlbbg2-200729.png) no-repeat}
.zdgknr ul .li1 .xxtb{margin: 0px auto;display: block;padding-top: 19px;margin-bottom: 5px;}
.zdgknr ul .li1 p{font-size: 16px;font-family: MicrosoftYaHei;color: #394351;line-height: 21px;text-align: center;}
.zdgknr ul .li1 .a{height:112px;width:100%;display:block}
.zdgknr ul .li1 .aa{height:112px;width:100%;display:block}
.zdgknr ul .li1 .xlnr {padding:24px;display:none;background: #fff;
border: 1px solid #0058a8;
position: absolute;
z-index: 999;
border-top: none;width: 207px;
left: -1px;
top: 110px;}
.zdgknr ul .li1 .xlnr li a{font-size:14px;text-align:center;width: 100%;display: block;line-height:30px;color:#5C5C5C}
.zdgknr ul .li1 .xlnr li a:hover{color:#0058a8;}
.zdgknr ul .li1 .xltb{margin: 0px auto;display: block;}
.zdgknr ul .borderb{border:1px solid #0058a8;border-bottom: none;}
.zdgknr a {cursor: pointer;}

/* 履职依据 */
.zwxxgk_box1{ width:1028px;height:100%; overflow:hidden; background-color:rgb(242,242,242); margin: 0 auto;padding:0px 36px 20px 36px; }
.scroll_main1 {width:100%;display: block; float:left; background-color:#FFF;  padding:0px 0px;/*inset边框内阴影*/margin-top:20px}
.zfxxgk_zdgktit{width:100%;height:33px;float:left;border-bottom:1px solid #ccc;}
.zfxxgk_zdgktit a{height:33px;line-height:31px;background-color:#0058a8;display:block;float:left;text-align:center;color:#fff;font-size:18px;font-weight:600;padding: 0px 20px;min-width: 70px;}
.zfxxgk_zdgkc{float:left;margin-top: 10px;margin-bottom: 20px;width: 100%;}

.zfxxgk_zdgkc  ul li {font-size:16px;line-height: 30pt;width: 100%;height: auto;overflow: hidden;}
.zfxxgk_zdgkc  ul li a{float: left;display: block;width: 78%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;word-wrap: normal;}
.zfxxgk_zdgkc  b{ color:#b2b2b2;font-size:16px; margin-left:20px; font-weight:normal; float:right;}
.zfxxgk_zdgkc .more{width:100px;height:30px;line-height:30px;font-size:15px;margin: 0 auto;text-align:center;background:#f0f0f0;float:left;margin-top: 10px;margin-left:290px;margin-bottom: 22px;}
.zfxxgk_zdgkc .zfjg li.one{width:100%;}
.zfxxgk_zdgkc .zfjg li{float:left; width:33%; font-size:14px; }
.zfxxgk_zdgkc span {
width: 3px;
height: 3px;
background: #C1C5CA;
border-radius: 2px;
display: inline-block;
vertical-align: middle;
margin-right: 8px;
float:left; margin-top:20px;
}
.lzyj{padding: 20px 24px;}

.zly_xxgk_fy1 {
				width: 790px;
				height: 30px;
				margin: 0 auto;
				text-align: center;
				padding-top: 5px;
				font-size: 14px;
			}
			
			.zly_xxgk_fy1 a {
				color: #666;
				padding: 0 5px;
				background: #FFF;
				font-size: 14px;
				margin: 0 5px;
				border: 1px solid #ccc;
			}
			
			.zly_xxgk_fy1 a:hover {
				color: #00315f;
				padding: 0 5px;
				margin: 0 5px;
				border: 1px solid #00315f;
			}