@charset "utf-8";
/**
  * @name:新闻动态 页面样式
  * @update:2022-1-9
  **/


/* ======================================= 
            全部动态页样式 开始
   =======================================*/
/* 新闻列表模块 开始 */

.m-newsList .list {
  min-height: 660px;
}

.m-newsList .list .item {
  float: left;
  width: 380px;
  height: 294px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}


.m-newsList .list .item:not(:nth-child(3n)) {
  margin-right: 30px;
}

.m-newsList .list .item .pic {
  height: 214px;
  overflow: hidden;
}

.m-newsList .list .item .pic img {
  transition: transform 0.2s linear;
}

.m-newsList .list .item:hover .pic img {
  transform: scale(1.1);
}

.m-newsList .list .item .name {
  height: 30px;
  line-height: 20px;
  padding: 10px 15px 0;
  font-size: 18px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 20px;
  transition: color 0.2s linear;
}

.m-newsList .list .item:hover .name {
  color: #ff6600;
}

.m-newsList .list .item .info {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-newsList .list .item .info .time {
  padding-left: 15px;
  color: #999;
  background: url(../images/time_icon.png) no-repeat left center;
}

.m-newsList .list .item .info .link {
  color: #ff6600;
}


/* 新闻列表模块 结束 */

/* ======================================= 
            全部动态页样式 结束
   =======================================*/

/* ======================================= 
            动态详情页样式 开始
   =======================================*/
/* 当前位置模块 开始 */
.m-nowSite {
  height: 30px;
}

.m-nowSite>p {
  font-size: 16px;
  color: #333;
}

.m-nowSite>p a {
  color: #333;
}

.m-nowSite>p a:last-of-type {
  color: #ff6600;
}

/* 当前位置模块 结束 */

/* 文章内容模块 结束 */
.m-article {
  min-height: 400px;
}

.m-article .title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 auto;
  text-align: center;
}

.m-article .txt {
  line-height: 30px;
  font-size: 16px;
  color: #333;
  text-indent: 2em;
}

/* 文章内容模块 结束 */
/* ======================================= 
            动态详情页样式 结束
   =======================================*/