@charset "UTF-8";
/*手機版*/
/*非手機版*/
/*中間混合*/
/*某值(包含)以上*/
/*某值(不包含)以下*/
/*計算比例值*/
.top-story .myrow {
  display: flex;
}
@media screen and (min-width: 992px) {
  .top-story .myrow {
    margin-right: -2px;
    margin-left: -2px;
  }
}
.top-story .myrow.verticle {
  min-width: 100%;
  margin-right: 30px;
}
@media screen and (min-width: 992px) {
  .top-story .myrow.verticle {
    height: calc(50% - 2px);
  }
}
@media screen and (min-width: 992px) {
  .top-story .myrow.verticle:first-child {
    margin-bottom: 4px;
  }
}
.top-story .myrow .mycol {
  padding-right: 0px;
  padding-left: 0px;
  margin-right: 30px;
}
@media screen and (min-width: 992px) {
  .top-story .myrow .mycol {
    margin-right: 0px;
    padding-right: 2px;
    padding-left: 2px;
  }
}
.top-story .overflow {
  overflow-x: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  /*Firefox*/
  scrollbar-color: #dedede transparent;
  scrollbar-width: thin;
}
.top-story .overflow::-webkit-scrollbar {
  height: 6px;
}
.top-story .overflow::-webkit-scrollbar-track {
  border-radius: 10px;
}
.top-story .overflow::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 10px;
}
.top-story .overflow::-webkit-scrollbar-thumb:hover {
  background: #bebebe;
}
@media screen and (min-width: 992px) {
  .top-story .overflow {
    overflow-x: hidden;
  }
}
.top-story .mobile {
  max-width: 70%;
  min-width: 70%;
}
@media screen and (min-width: 992px) {
  .top-story .mobile {
    max-width: none;
    min-width: 0;
    margin-right: 0px;
  }
}
.top-story .right {
  display: flex;
}
@media screen and (min-width: 992px) {
  .top-story .right {
    display: block;
  }
}
.top-story .news-frame {
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  display: block;
  position: relative;
  transition: background-size 800ms cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 0;
  padding-bottom: 66.66%;
  width: 100%;
  margin-right: 20px;
}
@media screen and (min-width: 992px) {
  .top-story .news-frame {
    height: 100%;
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 992px) {
  .top-story .news-frame.main {
    height: 0;
    padding-bottom: 66.66%;
  }
  .top-story .news-frame.main .title-frame {
    padding: 0px 30px;
  }
}
.top-story .news-frame:after {
  position: absolute;
  background-image: linear-gradient(transparent, #111), linear-gradient(transparent, #111);
  content: "";
  height: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.8;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.top-story .news-frame:hover {
  background-size: 105%;
}
.top-story .news-frame .title-frame {
  padding: 0px 15px;
  position: absolute;
  z-index: 2;
  bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top-story .news-frame .title-frame {
    padding: 0px 25px;
    bottom: 20px;
  }
}
@media screen and (min-width: 992px) {
  .top-story .news-frame .title-frame {
    bottom: 30px;
  }
  .top-story .news-frame .title-frame.c2 {
    bottom: 20px;
  }
}
.top-story .news-frame .title-frame .label {
  padding: 4px 10px;
}
.top-story .news-frame .title-frame .date {
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 12px;
}
.top-story .news-frame .title-frame .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .top-story .news-frame .title-frame .title {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .top-story .news-frame .title-frame .title {
    font-size: 24px;
  }
  .top-story .news-frame .title-frame .title.c2 {
    font-size: 20px;
  }
  .top-story .news-frame .title-frame .title.c3 {
    font-size: 16px;
  }
}
.top-story .news-frame .title-frame .title:hover {
  color: #F49C00;
}

.latest-news {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--frame-shadow);
  margin-bottom: 20px;
}
@media screen and (min-width: 500px) {
  .latest-news {
    height: calc(130px * 2 / 3);
  }
}
@media screen and (min-width: 768px) {
  .latest-news {
    height: calc(140px * 2 / 3);
  }
}
@media screen and (min-width: 992px) {
  .latest-news {
    height: calc(160px * 2 / 3);
  }
}
.latest-news .photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  display: none;
}
@media screen and (min-width: 500px) {
  .latest-news .photo {
    display: block;
    width: 130px;
    min-width: 130px;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .latest-news .photo {
    width: 140px;
    min-width: 140px;
  }
}
@media screen and (min-width: 992px) {
  .latest-news .photo {
    width: 160px;
    min-width: 160px;
  }
}
.latest-news .right {
  width: 100%;
  padding: 10px 15px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.latest-news .right .title {
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 992px) {
  .latest-news .right .title {
    font-size: 18px;
  }
}
.latest-news .right .title:hover {
  color: #F49C00;
}
.latest-news .right .bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/** 
	* .topic-frame
	* 03/12/21 Update 
	* add class name => class-1
**/
.topic-frame {
  box-shadow: var(--photo-shadow);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  height: 0px;
  width: 100%;
  padding-bottom: 66.66%;
  display: flex;
  justify-content: center;
  position: relative;
  transition: background-size 800ms cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: var(--border-radius);
}
.topic-frame:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  border-radius: var(--border-radius);
}
.topic-frame.mb-20 {
  margin-bottom: 20px;
}
.topic-frame.mb-30 {
  margin-bottom: 30px;
}
.topic-frame:hover {
  background-size: 110%;
}
.topic-frame.class-1:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.45);
  content: "";
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  border-radius: var(--border-radius);
}
.topic-frame.class-1 .title {
  font-size: 16px;
  color: inherit;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 4px 8px;
}
.topic-frame .title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  word-wrap: break-word;
  max-width: calc(100% - 40px);
}
.topic-frame .title:hover {
  color: #F49C00;
}

.text-news {
  display: block;
  box-shadow: var(--frame-shadow);
  width: 100%;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 15px;
  transition: box-shadow 200ms cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 20px;
}
.text-news:hover {
  box-shadow: var(--photo-shadow);
}
.text-news .title {
  width: 100%;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  display: block;
}
.text-news .title:hover {
  color: #e59200;
}
.text-news .date {
  margin-top: 10px;
}

.more-news {
  width: 100%;
  background-color: #ffffff;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--frame-shadow);
  margin-bottom: 25px;
}
.more-news .top {
  display: flex;
  justify-content: space-between;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .more-news .top {
    height: 110px;
  }
}
.more-news .top .photo {
  display: block;
  width: 70px;
  min-width: 70px;
  height: 70px;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .more-news .top .photo {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}
.more-news .top .wrapper {
  width: 100%;
  padding-right: 15px;
  height: 100%;
  position: relative;
}
.more-news .top .title {
  margin-top: 5px;
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .more-news .top .title {
    font-size: 18px;
  }
}
.more-news .top .title:hover {
  color: #F49C00;
}
.more-news .top .date {
  margin-top: 10px;
}
.more-news .abstract {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-top: 15px;
  line-height: 1.4;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .more-news .abstract {
    font-size: 16px;
  }
}

.range-news {
  box-shadow: var(--frame-shadow);
  width: 100%;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 20px;
}
.range-news ul {
  counter-reset: number;
}
.range-news ul .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.range-news ul .item .link {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  margin-top: -1px;
}
.range-news ul .item::before {
  counter-increment: number;
  content: counter(number);
  background-color: #222222;
  color: #ffffff;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  min-width: 20px;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 21px;
  margin-right: 10px;
}
.range-news ul .item:last-child {
  margin-bottom: 0px;
}
.range-news ul .item:hover .link {
  color: #F49C00;
}
.range-news ul .item:hover::before {
  background-color: #F49C00;
}

/**
	* .related-news-frame
	* 03/12/21
	* Add
*/
.related-news-frame .list {
  border-bottom: 1px solid #e8e8e8;
  padding-top: 15px;
  padding-bottom: 15px;
}
.related-news-frame .list:first-child {
  padding-top: 0px;
}
.related-news-frame .list:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.related-news-frame .list .title {
  display: block;
  width: 100%;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}
.related-news-frame .list .title:hover {
  color: #e59200;
}
.related-news-frame .list .bottom {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.related-news-frame .list .bottom .label {
  margin-right: 15px;
}

.display-1 {
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--frame-shadow);
}
.display-1 .main-photo {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 0;
  padding-bottom: 66.66%;
  display: block;
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
  position: relative;
  transition: background-size 800ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.display-1 .main-photo:after {
  position: absolute;
  background-image: linear-gradient(transparent, #111), linear-gradient(transparent, #111);
  content: "";
  height: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.8;
}
.display-1 .main-photo:hover {
  background-size: 105%;
}
.display-1 .main-photo .title-frame {
  padding: 0px 20px;
  position: absolute;
  z-index: 2;
  bottom: 20px;
}
@media screen and (min-width: 992px) {
  .display-1 .main-photo .title-frame {
    bottom: 30px;
  }
}
.display-1 .main-photo .title-frame .date {
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 12px;
}
.display-1 .main-photo .title-frame .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 992px) {
  .display-1 .main-photo .title-frame .title {
    font-size: 24px;
  }
}
.display-1 .main-photo .title-frame .title:hover {
  color: #F49C00;
}
.display-1 .related-frame {
  padding: 0px 20px;
}
.display-1 .related-frame .item-frame {
  display: block;
  width: 100%;
  padding: 20px 0px;
  border-bottom: 1px solid #e8e8e8;
}
.display-1 .related-frame .item-frame:last-child {
  border-bottom: none;
}
.display-1 .related-frame .item-frame:hover .title {
  color: #F49C00;
}
.display-1 .related-frame .item-frame .title {
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  display: block;
}

.display-2 .main-photo {
  box-shadow: var(--photo-shadow);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  height: 0px;
  padding-bottom: 66.66%;
  display: block;
  border-radius: var(--border-radius);
  position: relative;
  margin-bottom: 20px;
  transition: background-size 800ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (min-width: 992px) {
  .display-2 .main-photo {
    height: 300px;
    padding-bottom: 0%;
  }
}
.display-2 .main-photo:hover {
  background-size: auto 108%;
}
.display-2 .main-photo:after {
  position: absolute;
  background-image: linear-gradient(transparent, #111), linear-gradient(transparent, #111);
  content: "";
  height: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.8;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.display-2 .main-photo .title-frame {
  padding: 0px 20px;
  position: absolute;
  z-index: 2;
  bottom: 20px;
}
.display-2 .main-photo .title-frame .date {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 8px;
  margin-top: 12px;
}
.display-2 .main-photo .title-frame .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.display-2 .main-photo .title-frame .title:hover {
  color: #F49C00;
}
.display-2 .item-frame {
  display: block;
  border-bottom: 1px solid #aaa;
  padding: 15px 0px;
}
.display-2 .item-frame:first-child {
  padding-top: 0px;
}
.display-2 .item-frame:last-child {
  border-bottom: none;
}
.display-2 .item-frame:hover .title {
  color: #F49C00;
}
.display-2 .item-frame .title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.display-2 .item-frame .date {
  font-size: 12px;
  margin-top: 10px;
}
.display-2 .item-frame .date .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.display-3-frame {
  display: block;
  box-shadow: var(--frame-shadow);
  border-radius: var(--border-radius);
  width: 100%;
  background-color: #ffffff;
  padding-bottom: 20px;
  transition: box-shadow 200ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.display-3-frame:hover {
  box-shadow: var(--photo-shadow);
}
.display-3-frame.pb-10 {
  padding-bottom: 10px;
}
.display-3-frame.mb-20 {
  margin-bottom: 20px;
}
.display-3-frame.mb-30 {
  margin-bottom: 30px;
}
.display-3-frame.heavy .date {
  margin-top: 15px;
  font-size: 14px;
}
.display-3-frame.heavy .date .icon {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.display-3-frame.heavy .title {
  font-size: 24px;
  padding: 0px 20px;
  min-height: 0px;
  height: auto;
  display: block;
}
.display-3-frame.heavy .title:hover {
  color: #e59200;
}
.display-3-frame.heavy .abstract {
  height: auto;
  min-height: 0px;
}
.display-3-frame .photo {
  width: 100%;
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
  display: inherit;
}
.display-3-frame .date {
  font-size: 13px;
  margin-top: 14px;
  padding: 0px 20px;
}
.display-3-frame .date .icon {
  margin-right: 4px;
}
.display-3-frame .title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 10px;
  padding: 0px 20px;
  transition: color 200ms cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}
@media screen and (min-width: 768px) {
  .display-3-frame .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 52px;
    height: 52px;
  }
}
@media screen and (min-width: 992px) {
  .display-3-frame .title {
    font-size: 17px;
    min-height: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .display-3-frame .title {
    font-size: 18px;
    min-height: 52px;
    height: 52px;
  }
}
.display-3-frame .title.small {
  font-size: 15px;
  min-height: 0px;
  height: auto;
  padding: 0px 15px;
}
.display-3-frame .title:hover {
  color: #e59200;
}
.display-3-frame .abstract {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-top: 10px;
  color: #888888;
  border-left: 3px solid #ccc;
  padding-left: 8px;
  margin-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .display-3-frame .abstract {
    min-height: 60px;
    height: 60px;
  }
}
.display-3-frame .abstract.small {
  margin-left: 15px;
  padding-right: 15px;
}

.display-4 {
  box-shadow: var(--photo-shadow);
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 0;
  padding-bottom: 66.66%;
  display: block;
  position: relative;
  transition: background-size 800ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.display-4:after {
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  content: "";
  height: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.display-4:hover {
  background-size: 110%;
}
.display-4 .label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 9px;
}
@media screen and (min-width: 768px) {
  .display-4 .label {
    padding: 2px 8px;
    top: 10px;
    left: 10px;
  }
}
.display-4 .title-frame {
  padding: 0px 15px;
  position: absolute;
  z-index: 2;
  bottom: 15px;
}
@media screen and (min-width: 768px) {
  .display-4 .title-frame {
    padding: 0px 10px;
    bottom: 10px;
  }
}
.display-4 .title-frame .date {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 3px;
}
.display-4 .title-frame .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .display-4 .title-frame .title {
    font-size: 16px;
  }
}
.display-4 .title-frame .title:hover {
  color: #F49C00;
}

/**
	* .display-5
	* 03/12/21
	* Add
*/
.display-5 {
  width: 100%;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--frame-shadow);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .display-5 {
    display: flex;
    align-items: center;
    height: calc(300px * 2 / 3);
  }
}
@media screen and (min-width: 992px) {
  .display-5 {
    height: calc(250px * 2 / 3);
  }
}
@media screen and (min-width: 1200px) {
  .display-5 {
    height: calc(300px * 2 / 3);
  }
}
.display-5:hover {
  box-shadow: var(--photo-shadow);
}
.display-5 .photo {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  height: 0px;
  padding-bottom: 66.66%;
}
@media screen and (min-width: 768px) {
  .display-5 .photo {
    border-top-right-radius: 0px;
    border-bottom-left-radius: var(--border-radius);
    height: 100%;
    padding-bottom: 0px;
    width: 300px;
    min-width: 300px;
  }
}
@media screen and (min-width: 992px) {
  .display-5 .photo {
    width: 250px;
    min-width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .display-5 .photo {
    width: 300px;
    min-width: 300px;
  }
}
.display-5 .right {
  padding: 20px 20px;
  height: 100%;
}
.display-5 .right .title {
  display: block;
  margin-top: 10px;
  width: 100%;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .display-5 .right .title {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
@media screen and (min-width: 992px) {
  .display-5 .right .title {
    -webkit-line-clamp: 2;
  }
}
@media screen and (min-width: 1200px) {
  .display-5 .right .title {
    -webkit-line-clamp: 3;
  }
}
.display-5 .right .title:hover {
  color: #F49C00;
}
.display-5 .right .abstract {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-top: 10px;
  color: #888888;
  border-left: 3px solid #ccc;
  padding-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .display-5 .right .abstract {
    -webkit-line-clamp: 3;
  }
}
@media screen and (min-width: 992px) {
  .display-5 .right .abstract {
    -webkit-line-clamp: 2;
  }
}
@media screen and (min-width: 1200px) {
  .display-5 .right .abstract {
    -webkit-line-clamp: 3;
  }
}