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

/* 公共头 */
.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/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/dot.png") no-repeat left center;
  margin-right: 15px;
}

.search-type a.active {
  background: url("../images/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: '下载WORD版';
}

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

@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;
  }
}

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