@charset "UTF-8";
/**!
* 许昌市列表页
* date:2022-12-20
* author: huangweiping;
*/

body {
  background: url("/images/jaqbg.png") no-repeat top center #f5f5f5;
}

*,
:before,
:after {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}

/* 公共头 */
.container {
  width: 1100px;
  margin: 0 auto;
}

.header {
  height: 285px;
  position: relative;
}

.header .logo {
  position: absolute;
  width: 190px;
  height: 50px;
  top: 20px;
  left: 0;
}

.header .logo a {
  display: block;
  height: 50px;
}

.header .logo-txt {
  position: absolute;
}

.header .dept-info {
  position: absolute;
  font-size: 18px;
  color: #fcfcfc;
  bottom: 22px;
  width: 100%;
  text-align: center;
}

.main-box {
  min-height: 1080px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 36px;
  width: 1100px;
  margin: 0 auto;
  background-color: #fff;
}

.main-top {
  height: 180px;
  background-color: #f5f5f5;
  margin-bottom: 50px;
  padding-top: 58px;
}

.search-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-wrap .search-box {
  width: 700px;
  height: 48px;
  border: 1px solid #0d5b9d;
  background: #ffffff;
  border-radius: 10px;
}

.search-wrap .search-box input {
  width: 600px;
  height: 46px;
  border: none;
  background: transparent;
  outline: none;
  padding-left: 14px;
}

.search-wrap .search-box .search-btn {
  float: right;
  background: url("/images/govxxgkzcgz/search-icon.png") no-repeat center;
  width: 70px;
  height: 46px;
}

.search-wrap .search-btn {
  width: 110px;
  height: 46px;
  background: #0d5b9d;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  margin-left: 25px;
  line-height: 46px;
  text-align: center;
}

.search-type {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 24px;
}

.search-type p {
  line-height: 24px;
  font-size: 16px;
  color: #0d5b9d;
  margin-right: 20px;
}

.search-type a {
  height: 24px;
  line-height: 24px;
  padding-left: 18px;
  background: url("/images/govxxgkzcgz/dot.png") no-repeat left center;
  margin-right: 15px;
}

.search-type a.active {
  background: url("/images/govxxgkzcgz/dot-ac.png") no-repeat left center;
}

/* 列表样式 */
.list-table {
  font-size: 16px;
  display: table;
  width: 100%;
  table-layout: fixed;
  border-bottom: 1px solid #ddd;
}

.list-table > * {
  display: table-row;
}

.list-table > * > * {
  display: table-cell;
}

.list-table > .list-head > * {
  font-size: 20px;
  font-family: 方正小标宋简体, Simsun;
  line-height: 2.75em;
  border-bottom: 2px solid #2d66a5;
  text-align: center;
}

.list-table > .list-head > *:first-child {
  width: 10%;
}

.list-table > .list-head > *:nth-child(2) {
  text-align: left;
  text-indent: 4em;
}

.list-table > .list-head > *:last-child {
  width: 240px;
}

.list-table > .list-row:nth-child(odd) {
  background-color: #eee;
}

.list-table > .list-row > * {
  text-align: center;
  vertical-align: middle;
  font-family: Simsun;
}

.list-table > .list-row > *:nth-child(2) {
  text-align: left;
  padding: 12px 0;
}

.list-table > .list-row > *:nth-child(2) > a {
  display: block;
  font-weight: bold;
  line-height: 1.5em;
  color: black;
}

.list-table > .list-row > *:nth-child(2) > a:hover {
  color: red;
}

.list-table > .list-row > *:nth-child(2) > span {
  display: block;
  font-style: normal;
  font-size: 0.875em;
  color: #2d66a5;
  margin-top: 12px;
  line-height: 1.5em;
}

.list-table > .list-row > *:last-child > a {
  font-size: 0.875em;
  color: black;
  margin: 0 12px;
}

.list-table > .list-row > *:last-child > a:hover {
  color: red;
}

.list-table > .list-row > *:last-child > a:after {
  content: '下载';
}

.list-table > .list-row > *:last-child > a[file$='.doc']:after,
.list-table > .list-row > *:last-child > a[file$='.docx']:after {
  content: '下载文字版';
}

.list-table > .list-row > *:last-child > a[file$='.pdf']:after {
  content: '下载图片版';
}

@media screen and (max-width: 768px) {
  .list-table {
    display: block;
  }
  .list-table > * {
    display: block;
  }
  .list-table > .list-row {
    padding: 12px;
  }
  .list-table > .list-row:nth-child(odd) {
    background-color: #f3f3f3;
  }
  .list-table > .list-row > * {
    display: block;
    text-align: left;
  }
  .list-table > .list-head {
    display: none;
  }
  .list-table > .list-row > *:first-child {
    display: none;
  }
  .list-table > .list-row > *:nth-child(2) {
    padding: 0;
  }
  .list-table > .list-row > *:nth-child(2) > a {
    line-height: 1.25em;
  }
  .list-table > .list-row > *:nth-child(2) > span {
    line-height: 1.25em;
    color: #888;
    margin-top: 8px;
  }
  .list-table > .list-row > *:last-child {
    margin-top: 8px;
  }
  .list-table > .list-row > *:last-child > a {
    margin-left: 0;
  }
  .list-table > .list-row > *:last-child > a:before {
    content: 'a';
    font-family: 'pip-common';
    padding-right: 3px;
  }
}

.pager {
  text-align: center;
  margin-top: 40px;
}
.zcgzpager {
  text-align: center;
  margin-top: 40px;
}


/* 尾部 */
/* footer */
#footer {
  position: relative;
  z-index: 200;
  min-height: 110px;
  background: #fff;
}

.footer {
  margin-top: 17px;
  background: #f5f5f5;
}

.footer-left {
  float: left;
  width: 800px;
  font-size: 0;
  -webkit-text-size-adjust: none;
}

.footer-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #999;
}

.footer-item.links {
  line-height: 34px;
}

.footer-item.links a {
  position: relative;
  float: left;
  margin-left: 22px;
}

.footer-item.links a::before {
  position: absolute;
  content: "";
  left: -12px;
  top: 10px;
  display: block;
  width: 2px;
  height: 15px;
  background: url("../images/footer_sx.jpg") no-repeat;
}

.footer-item.links a:first-child {
  margin-left: 0;
}

.footer-item.links a:first-child::before {
  display: none;
}

.footer-item a {
  color: #999;
}

.footer-item a:hover {
  color: #376cb0;
}

.footer-item .gongan {
  padding-left: 23px;
  background: url("../images/gongan.png") left center no-repeat;
}

.footer-right {
  float: right;
  margin-top: 19px;
}

.footer-icon {
  float: left;
  margin-left: 40px;
}

.footer-icon:first-child {
  margin-left: 0;
}

.footer-icon.icon1 {
  height: 62px;
  padding-right:20px;
}

.footer-icon.icon2 {
  width: 54px;
  height: 63px;
}

.footer-icon.icon3 {
  margin-top: 4px;
  width: 107px;
  height: 51px;
}

.footer-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.ewb-footer {
    background: #333;
    margin-top: 20px;
}

.ewb-foot-a {
    line-height: 38px;
    border-bottom: 1px solid #5c5c5c;
    font-size: 16px;
    padding-top: 20px;
}

.ewb-foot-a a {
    color: #fff;
}

.ewb-footer-aa {
    color: #fff;
}

.ewb-foot-a span {
    padding: 0 20px;
    color: #9a9a9a;
}

.ewb-foot-copy {
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    padding-top: 10px;
    height: 124px;
    position: relative;
}

.ewb-foot-copy p span {
    margin-right: 20px;
}

.ewb-foot-copy p span img {
    vertical-align: top;
    margin-top: 5px;
    margin-right: 4px;
}

.ewb-foot-img1,
.ewb-foot-img2 {
    display: block;
    position: absolute;
}

.ewb-foot-img1 {
    right: 152px;
    top: 30px;
}

.ewb-foot-img2 {
    right: 0;
    top: 30px;
}

.foot-icon {
    width: 24px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
}

@media(max-width: 979px) {
    .ewb-foot-a span {
        padding: 0 10px;
    }
}

@media(max-width: 767px) {
    /* footer */
    .ewb-footer {
        padding-top: 5px;
        padding-bottom: 20px;
    }
    .ewb-foot-a {
        margin-top: 10px;
        line-height: 24px;
        font-size: 14px;
    }
    .ewb-foot-copy {
        height: auto;
        line-height: 24px;
    }
    .ewb-foot-img1,
    .ewb-foot-img2 {
        position: static;
        display: inline-block;
    }
    .ewb-foot-img {
        text-align: center;
        margin-top: 10px;
    }
    .ewb-foot-copy p span {
        margin-right: 0;
        display: block;
    }
}