/* CSS Document */
.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .newsInfoBox .classTitle {
    display: none;
  }
}

.newsList {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 100px;
}
@media (max-width: 1366px) {
  .newsList {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .newsList {
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .newsList {
    padding: 0;
  }
}
.newsList .newsItem {
  position: relative;
  width: 100%;
  padding: 5px 15px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
    padding: 5px 0;
  }
}
.newsList .newsItem::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #8B8B8B;
  left: 0;
  bottom: 0;
}
.newsList .newsItem:last-child::after {
  display: none;
}
.newsList .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 0 50px;
}
@media (max-width: 768px) {
  .newsList .item {
    padding: 0 0 30px;
  }
}
@media (max-width: 640px) {
  .newsList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.newsList .item::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 170px;
  height: 170px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(11%, rgb(0, 148, 219)), color-stop(99%, rgb(20, 71, 173)));
  background-image: linear-gradient(90deg, rgb(0, 148, 219) 11%, rgb(20, 71, 173) 99%);
  z-index: -1;
}
@media (max-width: 768px) {
  .newsList .item::before {
    display: none;
  }
}
.newsList .Img {
  width: 64%;
  height: auto;
  margin-left: 50px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .newsList .Img {
    margin-left: 0px;
  }
}
@media (max-width: 640px) {
  .newsList .Img {
    width: 100%;
  }
}
@media (min-width: 1181px) {
  .newsList .Img:hover {
    cursor: pointer;
  }
  .newsList .Img:hover img {
    opacity: 0.9;
    scale: 1.1;
  }
}
.newsList .Img img {
  -webkit-transition: opacity 0.3s ease-in-out, scale 1.5s ease-in-out;
  transition: opacity 0.3s ease-in-out, scale 1.5s ease-in-out;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Txt {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38%;
  padding: 35px 55px;
  background-color: #fff;
  z-index: 2;
}
@media (max-width: 960px) {
  .newsList .Txt {
    width: 60%;
    padding: 25px 35px;
  }
}
@media (max-width: 640px) {
  .newsList .Txt {
    position: static;
    width: 100%;
    padding: 15px 25px;
  }
}
@media (max-width: 480px) {
  .newsList .Txt {
    padding: 10px 15px;
  }
}
.newsList .Txt .title a {
  position: relative;
  display: block;
  font-size: 24px;
  padding-bottom: 18px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList .Txt .title a::after {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  display: block;
  width: 63px;
  height: 1px;
  bottom: 0px;
  background-color: #ba111c;
}
@media (max-width: 1180px) {
  .newsList .Txt .title a {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .newsList .Txt .title a {
    font-size: 20px;
  }
}
.newsList .Txt .newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 10px;
  padding-bottom: 15px;
}
@media (max-width: 480px) {
  .newsList .Txt .newsInfoBox {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.newsList .Txt .text {
  color: #3c4042;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 1180px) {
  .newsList .Txt .text {
    font-size: 15px;
  }
}
.newsList .Txt .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  height: 50px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(11%, rgb(0, 148, 219)), color-stop(99%, rgb(20, 71, 173)));
  background-image: linear-gradient(90deg, rgb(0, 148, 219) 11%, rgb(20, 71, 173) 99%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 1180px) {
  .newsList .Txt .btn {
    display: none;
  }
}
.newsList .Txt .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  width: 100%;
  height: 100%;
}
@media (min-width: 1181px) {
  .newsList .Txt .btn:hover {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
}
.newsList .slick-dots {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  bottom: -50px;
}
@media (max-width: 640px) {
  .newsList .slick-dots {
    bottom: -20px;
  }
}
.newsList .slick-dots li button::before {
  background-color: #fff;
}
.newsList .slick-dots li.slick-active button::before {
  opacity: 0.75;
  background-color: #2E65B7;
}
.newsList .slick-arrow {
  width: 63px;
  height: 63px;
  background-color: #bbbbbb;
  border-radius: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: -42px;
}
.newsList .slick-arrow::before {
  width: 10px;
  height: 10px;
}
.newsList .slick-arrow.slick-next {
  background-color: #bbbbbb;
  left: auto;
  right: -5px;
}
.newsList .slick-arrow.slick-next::before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.newsList .slick-arrow.slick-prev {
  background-color: #bbbbbb;
  left: auto;
  right: 69px;
}
.newsList .slick-arrow.slick-prev::before {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media (min-width: 1181px) {
  .newsList .slick-arrow:hover {
    background-color: #ba111c;
  }
}
@media (max-width: 1180px) {
  .newsList .slick-arrow {
    width: 54px;
    height: 54px;
    top: -37px;
  }
  .newsList .slick-arrow.slick-prev {
    right: 60px;
  }
}
@media (max-width: 768px) {
  .newsList .slick-arrow.slick-next {
    display: none !important;
  }
  .newsList .slick-arrow.slick-prev {
    display: none !important;
  }
}

.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: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
  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: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}