/* CSS Document */
.titleImgWrap {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
.titleImgWrap .titleImg .titleBox {
  top: 40px;
}
@media (max-width: 400px) {
  .titleImgWrap {
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
}

.newsIns .bread {
  margin-bottom: 30px;
}
.newsIns .titleImgWrap {
  /*margin-bottom: 30px;*/
}
.newsIns .articleTitle {
  text-align: left;
}

.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;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
  color: #d81b60;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 15px 30px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  padding: 20px 0px;
}
.newsList .newsItem {
  position: relative;
}
.newsList .newsItem::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #d81b60;
  position: absolute;
  right: 0;
  bottom: -1px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  display: none;
}
@media (min-width: 1181px) {
  .newsList .newsItem:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .newsList .newsItem:hover .Img {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .newsList .newsItem:hover .title a {
    color: #d81b60;
  }
  .newsList .newsItem:hover .plusArrow {
    border-color: #d81b60;
    background-color: #d81b60;
  }
  .newsList .newsItem:hover .plusArrow i {
    color: #fff;
  }
}
.newsList .item {
  position: relative;
  cursor: pointer;
}
.newsList .Img {
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d81b60;
}
.newsList .Img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
}
.newsList .Img .classTitle {
  position: absolute;
  left: 10px;
  top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #d81b60;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 20px;
  border-radius: 20px;
}
.newsList .Txt {
  position: relative;
}
@media (max-width: 480px) {
  .newsList .Txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.newsList .dateBox {
  margin-top: 20px;
}
.newsList .dateBox .date {
  font-size: 15px;
  font-weight: bold;
  font-family: "Inria Sans", serif;
  letter-spacing: 0.33px;
  color: #d81b60;
}
.newsList .title {
  margin-top: 15px;
  position: relative;
  padding-right: 50px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: 0.9px;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  text-align: center;
}
.newsList .title svg {
  position: absolute;
  top: 5px;
  right: 0;
  color: #d81b60;
}
.newsList .title.ellipsis {
  height: 45px;
  overflow: hidden;
}
@media (max-width: 400px) {
  .newsList .title {
    font-size: 16px;
  }
}

.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;
  }
}

@media (min-width: 1024px) {
  .classBoxRow .classLink {
    margin: 0 -10px;
    border-bottom: 1px solid #e2e2e2;
  }
  .classBoxRow .classLink li {
    padding: 0 40px;
    margin: 0;
    position: relative;
  }
}
@media (min-width: 1024px) and (max-width: 1610px) {
  .classBoxRow .classLink li {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .classBoxRow .classLink li:not(:last-child)::after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background-color: #e2e2e2;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
  }
  .classBoxRow .classLink a {
    width: 100%;
    font-size: 18px;
    padding: 20px 0px;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    color: #000;
    letter-spacing: 0;
    font-weight: 400;
    position: relative;
  }
  .classBoxRow .classLink a::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #d81b60;
    position: absolute;
    bottom: -1px;
    left: auto;
    top: auto;
    right: 0;
    z-index: 1;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .classBoxRow .classLink a.current {
    font-weight: 500;
  }
  .classBoxRow .classLink a.current::before {
    width: 100%;
    left: 0;
    right: auto;
  }
}
@media (min-width: 1024px) and (min-width: 1181px) {
  .classBoxRow .classLink a:hover {
    font-weight: 500;
  }
  .classBoxRow .classLink a:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
}

.classTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #101010;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 20px;
  border-radius: 20px;
}