/* ==start==新闻列表== */
* {
    padding: 0px;
    margin: 0px;
}
#main {
    width: 1100px;
    margin: 0px auto;
}
.news {
    float: left;
    display: inline;
    margin: 0px 8px;
    width: calc(100% - 16px);
    /* width: 350px;
    height: 355px; */
}
#main h2 {
    color: #004e87;
    line-height: 42px;
    height: 42px;
    font-size: 20px;
    font-weight: 100;
    float: left;
    padding-left: 10px;
}
.more {
    float: right;
    margin: 20px 0 10px 0;
}
#new_c #img,
#notice_c #img,
#zs_c #img {
    padding: 5px 10px 10px 10px;
    clear: both;
}
#new_c ul,
#notice_c ul,
#zs_c ul {
    list-style: none;
}
#new_c ul li,
#notice_c ul li,
#zs_c ul li {
    border-bottom: dotted 1px #CCC;
    line-height: 34px;
    height: 34px;
    background: url(/uploads/user_upload/36477/t2.png) no-repeat 0 13px;
    padding-left: 10px;
}
#new_c span,
#notice_c span,
#zs_c span {
    float: right;
    display: inline;
    color: #ccc;
    font-family: "微软雅黑";
    font-size: 13px;
}
#new_c a,
#notice_c a,
#zs_c a {
    /* color: #333; */
    color: #ffffff;
    text-decoration: none;
    font-family: "微软雅黑";
    /* font-size: 1em; */
    line-height: 1.75em;
    /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 6px; */
    width: 300px;
    border: solid 1px blueviolet;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ==end==新闻列表== */



/* ==start==瀑布流==*/
.card{
    overflow:hidden;
  }
  
  .card-reveal .card-body {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: 0;
      height: 100%;
      width: 100%;
      text-align: center;
  }
  
  .card-reveal .card-body .card-title {
      font-size: .75rem;
      margin: 0;
      text-transform: uppercase;
      font-weight: bolder;
      color: #4d4d4d;
  }
  
  @media (min-width: 992px) {
      .card-reveal .card-body {
          height: 100%;
          bottom: -100%;
          -webkit-transition: bottom .2s ease-in-out;
          transition: bottom .2s ease-in-out;
      }
  
      .card-reveal .card-img-top {
          -webkit-transition: -webkit-transform .5s ease-in-out;
          transition: -webkit-transform .5s ease-in-out;
          transition: transform .5s ease-in-out;
          transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
      }
  
      .card-reveal:hover .card-body {
          bottom: 0;
          background-color: rgba(255, 255, 255, 0.7);
      }
  
      .card-reveal:hover .card-img-top {
          -webkit-transform: scale(1.3);
          transform: scale(1.3);
      }
  }
  
  @media (min-width: 576px) and (max-width: 1199.98px) {
      .card-columns {
          -webkit-column-count: 3;
          -moz-column-count: 3;
          column-count: 3;
      }
  }
  @media(max-width: 575.99px) {
      .card-columns {
          -webkit-column-count: 2;
          -moz-column-count: 2;
          column-count: 2;
      }
  }
  /* ==end==瀑布流== */