/* CSS Document */
.mainArea {
  padding-bottom: 20px;
}

.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.newsInfoBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox, .newsInfoBox .classTitle {
  padding: 5px 0;
  font-family: 'Times New Roman', Times, serif;
  color: #999;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
  font-size: 0.2rem;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px 5px 0;
}

.newsList {
  margin: 0 -15px;
}
.newsList .newsItem {
  padding: 0 15px 40px;
}
.newsList .item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
.newsList .imgBox {
  position: relative;
  transition: all 0.8s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.newsList .imgBox::before {
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  left: -10px;
  background: linear-gradient(to right, #ff0000 0%, #ce0a0a 100%);
  opacity: 0;
  z-index: -1;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.8s;
}
@media (min-width: 1201px) {
  .newsList .imgBox:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  .newsList .imgBox:hover::before {
    opacity: 0.5;
  }
}
.newsList .Img {
  width: 350px;
  position: relative;
  z-index: 2;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .newsList .Img {
    width: 100%;
  }
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;

}

.newsList .Img:hover img {  border-radius: 15px;}

.newsList .Txt {
  width: calc(100% - 350px);
  padding: 15px 0 15px 30px;
  overflow: hidden;
}
.newsInfoBox .dateBox .date {font-size: 0.24rem;}

.newsList .Txt .title a {
  display: block;
  font-size: 0.22rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.1rem 0; border-bottom:1px solid #eee;
  font-weight: normal;
  font-weight: 700;
  color: #333;
}

@media (max-width: 1023px) {
	.newsInfoBox{padding-bottom: 0;}
  .newsList .Txt {
    width: 100%;
    padding: 0;
  }
.newsList .Txt .title a{padding: 5px 0 10px 0;}

.newsList .newsItem{padding: 10px 0;}
.newsList{margin: 0;}
}

.newsList .Txt .title a:hover {color: #ff0000;}

.newsList .Txt .text,.newsList .Txt p {

  color: #333333;
  font-size: .18rem;
  padding-top: 0.1rem;
  line-height: 2;
}


.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
@media (min-width: 1201px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}