@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

p {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

ul,
ol {
  list-style: none;
  list-style-type: none;
  margin: 0; }

input,
button,
a,
select {
  outline: none !important; }

table {
  border: none; }

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

img {
  border: none; }

a:hover,
a:focus {
  text-decoration: none;
  color: inherit; }

input,
textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

.fl {
  float: left; }

.fr {
  float: right; }

/*取消部分特殊样式*/
.no-before:before {
  display: none !important; }

.no-after:after {
  display: none !important; }

.no-mt {
  margin-top: 0 !important; }

.no-mr {
  margin-right: 0 !important; }

.no-mb {
  margin-bottom: 0 !important; }

.no-ml {
  margin-left: 0 !important; }

.no-all-m {
  margin: 0 !important; }

.no-pt {
  padding-top: 0 !important; }

.no-pr {
  padding-right: 0 !important; }

.no-pb {
  padding-bottom: 0 !important; }

.no-pl {
  padding-left: 0 !important; }

.no-all-p {
  padding: 0 !important; }

.no-bt {
  border-top: 0 !important; }

.no-br {
  border-right: 0 !important; }

.no-bb {
  border-bottom: 0 !important; }

.no-bl {
  border-left: 0 !important; }

.no-all-b {
  border: 0 !important; }

.clearfix {
  zoom: 1; }

.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  clear: both; }

.tl {
  text-align: left !important; }

.tc {
  text-align: center !important; }

.tr {
  text-align: right !important; }

/*单行溢出*/
.text-ellipsis {
  display: block;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  /* 1*/
  text-overflow: ellipsis;
  text-align: left;
  /* 2*/ }

/*两行溢出*/
.text-ellipsis-2 {
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

/*三行溢出*/
.text-ellipsis-3 {
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

/*弹性布局*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: multiple; }

.flexnew {
  display: -webkit-box;
  display: -moz-box;
  display: box; }

/*flex布局*/
/*竖直方向排列*/
.flexvert {
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -webkit-box-orient: vertical; }

.flexbet {
  justify-content: space-between;
  -moz-box-pack: justify;
  -webkit-box-pack: justify; }

/*flex水平两端对齐*/
.flexcenter {
  justify-content: center;
  -moz-box-pack: center;
  -webkit-box-pack: center; }

/*flex水平两端对齐*/
.flexmid {
  align-items: center;
  -moz-box-align: center;
  -webkit-box-align: center; }

/*flex垂直居中*/
.flex1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  min-width: 0; }

.require:before {
  content: "*";
  color: #f00;
  vertical-align: middle; }

a {
  text-decoration: none;
  color: #666;
  cursor: pointer; }
  a:hover {
    color: #06C; }

body {
  color: #666;
  background-color: #fff; }

.wrap {
  width: 1200px;
  margin: 0 auto; }

body {
  background: url(../img/body-bg.png) repeat-x top left;
  width: 100%;
  font: 14px "Microsoft YaHei",'iconfont', "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif; }

.model-box {
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(32, 122, 207, 0.3); }

.arrow {
  position: relative; }
  .arrow:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 8px solid #06C;
    border-bottom: 6px solid transparent;
    transition: transform .3s ease; }

.arrow.on:after {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -moz-transform: rotate(90deg);
  /* Firefox */
  -webkit-transform: rotate(90deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(90deg); }

*::selection {
  background: #70A102;
  color: #fff;
  text-shadow: #000 0 1px 0; }

*::-moz-selection {
  background: #70A102;
  color: #fff;
  text-shadow: #000 0 1px 0; }

*::-webkit-selection {
  background: #70A102;
  color: #fff;
  text-shadow: #000 0 1px 0; }

.header {
  padding-left: 10px;
  padding-right: 20px;
  height: 40px;
  line-height: 40px;
  background-color: #83C5F8;
  font-size: 14px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6); }
  .header .date {
    margin-left: 20px; }
  .header .line {
    margin: 0 10px; }

.search-box {
  padding-right: 10px;
  height: 40px;
  line-height: 40px; }
  .search-box .search-input {
    padding-left: 5px;
    line-height: 18px;
    margin: 0 5px;
    width: 150px;
    height: 18px;
    font-size: 12px;
    color: #333;
    border: 0;
    background-color: #fff; }
  .search-box .search-btn {
    padding: 0 8px;
    font-size: 12px;
    color: #333;
    width: 44px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    border: 1px solid #ddd;
    background: #ddd; }

.banner {
  height: 200px;
  overflow: hidden;
  background: url(../img/banner-bg.png) no-repeat center right; }
  .banner img {
    margin-top: 53px;
    width: 608px;
    height: 83px; }

.nav {
  height: 50px;
  background-color: #207ACF; }
  .nav ul li {
    float: left;
    width: 14.2857%;
    position: relative; }
    .nav ul li:hover {
      background-color: #0856A6; }
    .nav ul li a {
      display: block;
      color: #fff;
      width: 100%;
      padding: 0 10px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      font-size: 16px;
      font-family: '微软雅黑';
      font-weight: bold;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      background: url(../img/nav-line.png) no-repeat right center; }
    .nav ul li .drap-menu {
      display: none;
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      background-color: #2d599e;
      z-index: 99; }
      .nav ul li .drap-menu a {
        font-weight: normal;
        background: none; }
      .nav ul li .drap-menu a:hover {
        background-color: #1f72be; }
    .nav ul li .big-drap-menu {
      width: 200%; }
      .nav ul li .big-drap-menu a {
        float: left;
        width: 50%; }
  .nav ul .active {
    background-color: #08498b; }
  .nav ul li:last-child a, .nav ul li .drap-menu a {
    background: none; }

.news-swiper {
  width: 518px;
  height: 398px;
  overflow: hidden;
  text-align: left;
  background: white; }
  .news-swiper .swiper-slide a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%; }
  .news-swiper .swiper-slide .news-img {
    width: 100%;
    height: 100%; }
  .news-swiper .swiper-slide .news-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-left: 15px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff; }
    .news-swiper .swiper-slide .news-title span {
      display: block;
      width: 60%; }
  .news-swiper .news-btn {
    position: absolute;
    right: 10px;
    z-index: 20;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    text-align: right; }
    .news-swiper .news-btn .swiper-pagination-switch {
      display: inline-block;
      width: 19px;
      height: 6px;
      line-height: 6px;
      border-radius: 0;
      text-align: center;
      background-color: #fff;
      color: #fff;
      font-size: 0;
      margin: 0;
      margin-right: 10px;
      opacity: 1; }
    .news-swiper .news-btn .swiper-active-switch {
      background-color: #0856A6;
      color: #fff; }

.zt-news-swiper {
  width: 475px;
  height: 390px;
  margin-top: 15px;
  margin-left: 15px; }

.news-item {
  margin-left: 10px;
  width: 652px; }

.bgtitle {
  height: 50px;
  line-height: 50px;
  border-bottom: 2px solid #999; }
  .bgtitle a {
    display: block;
    float: left;
    padding: 0 20px;
    color: #999;
    text-align: center;
    font-size: 16px;
    transition: all .3s ease;
    font-weight: 600;
    position: relative; }
    .bgtitle a:hover {
      color: #0856a6; }
      .bgtitle a:hover::before {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #0856A6; }
  .bgtitle a.active {
    color: #0856a6; }
    .bgtitle a.active::before {
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      content: "";
      width: 100%;
      height: 2px;
      background-color: #0856A6; }
  .bgtitle .more {
    float: right;
    font-weight: 500;
    padding-right: 10px; }
    .bgtitle .more:before {
      display: none; }
  .bgtitle .more.active:before {
    display: none; }

.list-item li {
  position: relative;
  padding-left: 5px;
  border-bottom: 1px dashed #efefef; }
  .list-item li a {
    display: block;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    color: #333; }
    .list-item li a:before {
      content: "";
      position: absolute;
      width: 4px;
      height: 4px;
      background-color: #2D599E;
      border-radius: 50%;
      top: 50%;
      margin-top: -2px;
      left: 3px; }
    .list-item li a .title {
      max-width: 70%;
      font-size: 16px;
      color: #333; }
    .list-item li a .date {
      margin-right: 14px;
      font-size: 16px;
      color: #999; }
  .list-item li:hover .title {
    color: #1C86EE; }

.gsgg {
  padding: 5px;
  width: 245px;
  height: 238px;
  background: #f5f5f5;
  border: 1px solid #efefef; }
  .gsgg > .title {
    padding-left: 20px;
    height: 28px;
    line-height: 25px;
    font-size: 14px;
    background: url(../img/gsgg.jpg) no-repeat; }
  .gsgg .list-item {
    padding: 15px 15px 15px 5px;
    height: 198px;
    background: #FFF; }
    .gsgg .list-item li {
      background: url(../img/li-hover.jpg) no-repeat left center;
      padding-left: 20px;
      padding-right: 0;
      height: 25px;
      line-height: 25px;
      font-size: 13px; }
      .gsgg .list-item li a:before {
        display: none; }

.hjzs {
  margin-top: 20px;
  padding-bottom: 20px; }
  .hjzs .title {
    background: url(../img/hjzs.png) no-repeat left top;
    height: 39px;
    text-indent: 80px;
    line-height: 39px;
    color: #FFFFFF;
    font-size: 18px; }
  .hjzs .zhishu {
    width: 848px;
    height: 320px;
    float: left;
    padding-top: 10px;
    position: relative; }
    .hjzs .zhishu .zswz {
      background-color: #fff;
      color: #0856a6;
      font-weight: 700;
      font-size: 16px;
      text-align: center;
      margin: 8px 0 8px 0; }
    .hjzs .zhishu .zsdb {
      background-color: #fff;
      font-size: 14px;
      color: #666;
      text-align: center;
      margin-top: 210px;
      text-align: left; }
  .hjzs .zhishu table {
    width: 100%;
    height: 47px;
    text-align: center;
    background-color: #f5f5f5;
    color: #333; }
    .hjzs .zhishu table th {
      font-size: 14px;
      color: #0856a6; }
    .hjzs .zhishu table td {
      font-size: 13px;
      color: #666; }
  .hjzs .superslide-item {
    position: absolute;
    height: 200px;
    width: 100%;
    color: #27408B;
    overflow: hidden; }
    .hjzs .superslide-item .tempWrap {
      height: 100% !important; }
  .hjzs .superslide-item p {
    height: 33px;
    line-height: 33px;
    overflow: hidden;
    border-bottom: 1px dashed #efefef; }
  .hjzs .superslide-item span {
    text-align: center;
    display: block;
    float: left;
    color: #0856a6; }
  .hjzs .zhishu .zs1 {
    width: 78.28px; }
  .hjzs .zhishu .zs2 {
    width: 78.28px; }
  .hjzs .zhishu th.zs2 {
    width: 78.28px;
    font-size: 14px;
    color: #0856a6; }
  .hjzs .zhishu td.zs2 {
    font-size: 13px;
    color: #666; }
  .hjzs .zhishu .zs3 {
    width: 78.28px; }
  .hjzs .zhishu .zs4 {
    width: 78.28px; }
  .hjzs .zhishu .zs5 {
    width: 78.28px; }
  .hjzs .zhishu .zs6 {
    width: 78.28px; }
  .hjzs .zhishu .zs7 {
    width: 78.28px; }
  .hjzs .zhishu .zs8 {
    width: 78.28px; }
  .hjzs .zhishu .zs9 {
    width: 100px; }
  .hjzs .swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    margin: 0 auto; }
  .hjzs .hjzs-img a {
    margin-top: 30px;
    display: block;
    width: 305px;
    height: 120px; }
    .hjzs .hjzs-img a > img {
      width: 100%;
      height: 100%; }

.index-item {
  margin-top: 10px; }
  .index-item .mainTitle {
    width: 100%;
    line-height: 39px;
    margin-bottom: 5px;
    height: 39px;
    font-size: 18px;
    background-color: #F0F4F7; }
    .index-item .mainTitle span {
      display: inline-block;
      width: 170px;
      color: #fff;
      background-color: #356DC4;
      text-align: center; }
    .index-item .mainTitle a {
      color: #0000FF;
      font-size: 14px;
      margin-right: 10px; }
  .index-item .sub-nav {
    padding-left: 20px;
    height: 32px;
    border-bottom: 1px solid #ddd; }
    .index-item .sub-nav a {
      float: left;
      display: block;
      padding: 5px 15px;
      font-size: 14px; }
    .index-item .sub-nav a.active {
      border-bottom: #0000FF 3px solid; }

.tabItem-wrap .tabItem-left {
  width: 836px; }

.tabItem-wrap .tabItem-right {
  width: 314px; }
  .tabItem-wrap .tabItem-right .mainTitle span {
    width: 120px; }

a > img {
  width: 100%;
  height: 100%; }

.bsdt {
  padding-top: 20px;
  padding-left: 30px; }
  .bsdt a {
    display: inline-block;
    width: 112px;
    overflow: hidden;
    text-align: center;
    font-size: 16px; }
    .bsdt a > img {
      width: 72px;
      height: 72px;
      margin-bottom: 5px; }
  .bsdt a + a {
    margin-left: 40px; }

.fbxt {
  margin-top: 10px; }
  .fbxt a {
    display: inline-block;
    width: 292px;
    height: 110px;
    overflow: hidden; }
  .fbxt a + a {
    margin-left: 6px; }

.zmhd {
  padding-left: 25px; }
  .zmhd a {
    margin-top: 10px;
    display: block;
    width: 260px;
    height: 76px;
    overflow: hidden;
    border-radius: 5px; }

.ztzl {
  position: relative;
  height: 118px;
  margin-top: 10px;
  overflow: hidden; }
  .ztzl .title {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    margin: 0 auto;
    padding: 20px 10px;
    background-color: #0856A6;
    color: #fff; }

#ztzlSwiper {
  margin-left: 50px;
  padding-top: 15px; }
  #ztzlSwiper a {
    position: relative;
    display: block;
    padding: 0 10px;
    width: 215px;
    height: 67px;
margin: 0 5px;
    text-align: center;
    overflow: hidden;
    background-color: #207ACF;
    color: #fff;
    font-size: 16px;
    background: -webkit-linear-gradient(to right, #207ACF, #41B5F9);
    background: -o-linear-gradient(to right, #207ACF, #41B5F9);
    background: -moz-linear-gradient(to right, #207ACF, #41B5F9);
    background: linear-gradient(to right, #207ACF, #41B5F9); }
    #ztzlSwiper a > span {
      width: 100%;
      position: absolute;
      left: 0;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      padding: 0 10px;
      margin: auto; }

.friendLink {
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-align: center; }
  .friendLink select {
    width: 200px;
    height: 30px;
    text-align: center;
    text-align-last: center;
    outline: 0;
    margin-left: 20px; }
    .friendLink select option {
      padding-left: 20px;
      color: #949494;
      text-align: center; }

.foot {
  position: relative;
  width: 100%;
  padding: 30px 0;
  margin-top: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #eeedeb;
  border-top: 3px solid #0856a6; }
  .foot .red {
    position: absolute;
    top: 96px;
    left: 50%;
    margin-left: -460px;
    display: inline-block;
    width: 80px;
    height: 72px; }
  .foot .zhaocuo {
    position: absolute;
    top: 108px;
    right: 50%;
    margin-right: -460px;
    display: inline-block;
    width: 110px;
    height: 55px; }
  .foot .menu a {
    padding: 0 10px; }

.side-bar a, .chat-tips i {
  background-image: url(../img/gdt-img.png);
  background-repeat: no-repeat; }

/*右侧悬浮icon*/
.side-bar {
  width: 66px;
  position: fixed;
  bottom: 20px;
  right: 25px;
  font-size: 0;
  line-height: 0;
  z-index: 100; }
  .side-bar a {
    width: 66px;
    height: 66px;
    display: inline-block;
    background-color: #ddd;
    margin-bottom: 2px; }
    .side-bar a:hover {
      background-color: #669fdd; }
  .side-bar .icon-qq {
    background-position: 0 -62px; }
  .side-bar .icon-chat {
    background-position: 0 -130px;
    position: relative; }
    .side-bar .icon-chat:hover .chat-tips {
      display: block; }
  .side-bar .icon-blog {
    background-position: 0 -198px; }
  .side-bar .icon-mail {
    background-position: 0 -266px; }
  .side-bar .icon-totop {
    background-position: 0 -320px; }
  .side-bar .chat-tips {
    padding: 20px;
    border: 1px solid #d1d2d6;
    position: absolute;
    right: 78px;
    top: -55px;
    background-color: #fff;
    display: none; }
    .side-bar .chat-tips i {
      width: 9px;
      height: 16px;
      display: inline-block;
      position: absolute;
      right: -9px;
      top: 80px;
      background-position: -88px -350px; }
    .side-bar .chat-tips img {
      width: 138px;
      height: 138px; }

.main-inner {
  width: 1200px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
  overflow: hidden; }
  .main-inner .road {
    margin-bottom: 10px;
    padding: 14px 0;
    padding-left: 55px;
    min-height: 50px;
    /* line-height: 50px; */
    font-size: 16px;
    background: url(../img/right-t.png) #F2F2F2 no-repeat 10px 3px; }
  .main-inner .sidebar {
    width: 300px;
    padding: 2px;
    border: 1px solid #efefef; }
    .main-inner .sidebar h3 {
      height: 50px;
      line-height: 50px;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      color: #06C;
      background-color: #F0F0F0; }
    .main-inner .sidebar .sidebar-nav a {
      display: block;
      width: 100%;
      min-height: 40px;
     /* line-height: 40px; */
      line-height: 1.8;
      padding: 5px 0;
      text-align: center;
      font-size: 16px;
      border-bottom: 1px dotted #efefef; }
      .main-inner .sidebar .sidebar-nav a:hover {
        color: #1C86EE;
        background: #E6E6E6; }
    .main-inner .sidebar .sidebar-nav li.active > a {
      color: #1C86EE;
      background: #E6E6E6; }
    .main-inner .sidebar .sidebar-nav > li:last-child a {
      border-bottom: none; }
    .main-inner .sidebar .sidebar-sub-nav {
      display: none;
      background-color: #F0F0F0; }
      .main-inner .sidebar .sidebar-sub-nav a {
        text-indent: 2em;
        font-size: 13px;
        color: #999; }
  .main-inner .list-wrap {
    width: 860px;
    border: 1px solid #efefef; }
    .main-inner .list-wrap .list-item li {
      background: url(../img/li-ico2.jpg) no-repeat 10px 20px;
      padding-top: 14px;
      padding-bottom: 14px;
      padding-left: 20px;
      padding-right: 0;
      min-height: 50px;
      font-size: 16px;
      border-bottom: 1px dotted #efefef; }
    .main-inner .list-wrap .list-item li a{
       height: initial;
       line-height: normal;
     }
      .main-inner .list-wrap .list-item li a::before {
        display: none; }
      .main-inner .list-wrap .list-item li .date {
        font-size: 15px;
        color: #333; }
    .main-inner .list-wrap .empty {
      padding: 20px;
      padding-bottom: 10px; }
    .main-inner .list-wrap ul.list-item + div, .main-inner .list-wrap .empty + div {
      padding: 10px 20px; }
  .main-inner .list-item li a:before {
    display: none; }

.detail {
  position: relative; }
  .detail:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 97%;
    height: 1px;
    border-bottom: 1px dotted #efefef;
    transform: translateX(-50%); }
  .detail .title {
    padding: 30px 40px;
    text-align: center;
    font-size: 20px;
    line-height: 2;
    font-weight: 600;
    color: #333; }
  .detail .fbxx {
    text-align: center;
    font-size: 14px;
    line-height: 50px;
    background-color: #DBDBDB;
    color: #A0522D; }
    .detail .fbxx span + span {
      margin-left: 100px; }
  .detail .detail-info {
    min-height: 150px;
    padding: 20px;
    line-height: 25px;
    font-size: 16px;
    color: #4a4a4a; }
    .detail .detail-info img {
      display: block;
      max-width: 100%;
      margin: 0 auto; }
    .detail .detail-info table {
      min-width: 70% !important;
      max-width: 100% !important;
      width: auto;
      margin: 0 auto;
      border-collapse: collapse;
      border-right: 1px solid #ddd;
      border-bottom: 1px solid #ddd; }
      .detail .detail-info table td {
        border-left: 1px solid #ddd !important;
        border-top: 1px solid #ddd !important;
        border-color: #ddd !important; }

/*暂无信息*/
.empty {
  color: #666;
  font-size: 16px;
  padding: 10px 5px;
  line-height: 2em; }

.zt-inner {
  padding: 0;
  width: 1200px;
  margin: 0 auto; }
  .zt-inner .list-wrap {
    width: 100%;
    border: none; }
    .zt-inner .list-wrap > div.title {
      padding: 0 20px;
      height: 57px;
      line-height: 57px;
      width: 100%;
      background: url(../img/puchatu.jpg) repeat-x left top; }
      .zt-inner .list-wrap > div.title span {
        font-size: 20px;
        color: #fff;
        font-weight: 600; }
      .zt-inner .list-wrap > div.title .more {
        float: right;
        font-size: 14px;
        color: #fff; }
        .zt-inner .list-wrap > div.title .more:hover {
          text-decoration: underline; }
    .zt-inner .list-wrap .list-item {
      padding: 10px; }
    .zt-inner .list-wrap .list-item li .date {
      color: #6A6AFF; }
  .zt-inner .list-wrap + .list-wrap {
    margin-top: 50px; }

.zt-list {
  padding-top: 20px;
  padding-left: 40px; }
  .zt-list li {
    margin-left: 20px;
    margin-bottom: 20px;
    float: left;
    width: 200px;
    height: 70px; }
    .zt-list li a {
      position: relative;
      display: block;
      padding: 0 10px;
      width: 100%;
      height: 100%;
      text-align: center;
      overflow: hidden;
      background-color: #207ACF;
      color: #fff;
      font-size: 16px;
      background: -webkit-linear-gradient(to right, #207ACF, #41B5F9);
      background: -o-linear-gradient(to right, #207ACF, #41B5F9);
      background: -moz-linear-gradient(to right, #207ACF, #41B5F9);
      background: linear-gradient(to right, #207ACF, #41B5F9); }
      .zt-list li a span {
        width: 100%;
        height: 42px;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        padding: 0 10px;
        margin: auto; }

.message-box {
  padding: 0 95px; }
  .message-box .message-tips {
    width: 400px;
    background: #e6f2fe;
    padding: 15px;
    line-height: 30px;
    color: #333;
    text-index: 2em;
    border: 1px solid #efefef;
    margin-top: 20px; }
  .message-box .message-section {
    padding: 10px;
    margin-top: 20px;
    width: 570px;
    border: 1px solid #efefef; }

.message-section .message-input-wrap {
  margin-bottom: 5px; }
  .message-section .message-input-wrap span.label {
    vertical-align: top;
    display: inline-block;
    width: 90px;
    padding: 5px;
    text-align: right; }
  .message-section .message-input-wrap input, .message-section .message-input-wrap select {
    padding: 2px 5px;
    height: 30px;
    line-height: 30px;
    font-size: 12px; }
  .message-section .message-input-wrap textarea {
    padding: 2px 5px;
    resize: none;
    font-size: 12px;
    font-family: "Microsoft YaHei",'iconfont', "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
    outline: none; }

.message-section input[type="submit"], .message-section input[type="reset"] {
  padding: 3px 10px; }

.messaage-shade {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 98;
  background-color: #000;
  opacity: 0.3;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30); }

.messaage-con {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 10px;
  right: 0;
  left: 50%;
  margin: auto;
  background: #fff;
  box-shadow: 0 1px 6px rgba(32, 122, 207, 0.3);
  max-width: 660px;
  max-height: 385px;
  z-index: 99;
  margin-left: -330px; }
  .messaage-con .close {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 30px;
    height: 30px;
    color: #2567b2;
    text-align: center;
    line-height: 28px;
    background: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    box-shadow: 1px -3px 4px rgba(32, 122, 207, 0.3); }
  .messaage-con p:nth-child(odd) {
    min-height: 50px;
    line-height: 2;
    padding: 10px 20px;
    color: #2567b2;
    font-size: 14px;
    font-weight: bold;
    height: 132px;
    max-height: 132px;
    overflow: auto; }
  .messaage-con p:nth-child(even) {
    min-height: 50px;
    line-height: 50px;
    padding-left: 20px;
    color: #2567b2;
    background-color: #f5fbff;
    font-size: 16px;
    font-weight: bold;
    display: block;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: left; }
/* 搜索 */
.main-inner .list-wrap .search-list li {
  height: auto;
  line-height: normal;
  background-position: 10px 20px; }

.main-inner .list-wrap .search-list .desc-inner {
  color: #999;
  font-size: 13px;
  margin-bottom: 10px;
  box-sizing: border-box;
  padding-left: 10px; }
  .main-inner .list-wrap .search-list .desc-inner span {
    margin-right: 20px; }
  .main-inner .list-wrap .search-list .desc-inner a {
    display: inline-block;
    height: auto;
    line-height: normal;
    color: #999;
    padding-left: 0;
    font-size: 13px; }
    .main-inner .list-wrap .search-list .desc-inner a:hover {
      color: #06C; }
.page-large .Num {
  padding: 0 7px; }

.page-large .on {
  background: #06C;
  color: #fff; }
/* 专题样式 */
.zt-top {
  width: 100%;
  min-width: 1200px;
  max-width: 1920px;
  height: 265px;
  background: url(../img/zt-banner.jpg) top center;
  display: block; }
  .zt-top .wrap {
    position: relative;
    height: 100%; }
  .zt-top .logo-img {
    margin-top: 24px;
    width: 352px;
    height: auto; }
  .zt-top .zt-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    overflow: hidden;
    max-height: 60px;
    text-align: center;
    font-size: 46px;
    font-weight: bold;
    color: #245d28;
    text-shadow: 0.3rem 0rem 0.5rem #ffffff, -0.3rem 0rem 0.5rem #ffffff, 0rem 0.3rem 0.5rem #ffffff, 0rem -0.3rem 0.5rem #ffffff;
    margin: 0px auto; }

.zt-main-inner {
 padding-bottom:20px;
min-height:500px;}
  .zt-main-inner .primary-title {
    margin-top: 10px;
    padding: 14px 20px;
    background: #14664b;
    color: #fff;
    font-size: 17px;
    font-weight: 600; }
  .zt-main-inner .describe {
    margin-top: 10px;
    padding: 15px;
    line-height: 2;
    background: #ffec99; }
  .zt-main-inner .zt-item {
    margin-top: 10px; }
    .zt-main-inner .zt-item .bgtitle {
      border-color: #007cc5; }
      .zt-main-inner .zt-item .bgtitle a {
        color: #007cc5; }
    .zt-main-inner .zt-item .list-item li:last-child {
      border-bottom: 0; }

.zt-foot {
  position: relative;
  padding: 20px 0;
  width: 100%;
  min-width: 1200px;
  max-width: 1920px;
  background: #f5f5f5;
  text-align: center;
  line-height: 2; }
.zt-foot .zhaocuo,.foot .zhaocuo{position: absolute;top: 50%;right: 50%;margin-right: -556px;display: inline-block;width: 110px;height: 55px;transform: translate(-50%,-50%);}
.zt-foot  .red,.foot .red {position: absolute;top:50%;left: 50%;margin-left: -460px;display: inline-block;width: 80px;height: 72px;transform: translate(-50%,-50%);}

.model-box .zmhd{padding-left: 50px;}
.model-box .zmhd a{width: 24%;float: left;margin-right: 10px;}
