.news_teamsInfoBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
@media (max-width: 414px) {
  .news_teamsInfoBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.news_teamsInfoBox .dateBox,
.news_teamsInfoBox .classTitle {
  padding: 5px 0;
}
@media (max-width: 414px) {
  .news_teamsInfoBox .dateBox {
    order: 2;
  }
}
.news_teamsInfoBox .dateBox .date {
  line-height: 1;
}
.news_teamsInfoBox .classTitle {
  flex-shrink: 0;
  min-width: 86px;
  align-items: center;
  background-color: #0099b3;
  color: #fff;
  display: inline-flex;
  font-size: clamp(14px, 0.85vw, 16px);
  justify-content: center;
  border-radius: 4px;
  padding: 2px 18px;
}
@media (max-width: 414px) {
  .news_teamsInfoBox .classTitle {
    order: 1;
  }
}

.news_teamsList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media (max-width: 960px) {
  .news_teamsList {
    margin: 0 -10px;
  }
}
.news_teamsList .news_teamsItem {
  width: 50%;
  padding: 0 15px 30px;
}
@media (max-width: 960px) {
  .news_teamsList .news_teamsItem {
    width: 100%;
    padding: 0 10px;
  }
}
.news_teamsList .item {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px;
}
.news_teamsList .Img {
  width: 50%;
  height: auto;
  border-radius: 4px;
  aspect-ratio: 835/1080;
}
@media (max-width: 480px) {
  .news_teamsList .Img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.news_teamsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.news_teamsList .Txt {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  aspect-ratio: 835/1080;
  padding: 10px 0 10px 20px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .news_teamsList .Txt {
    width: 100%;
    height: 300px;
    padding: 10px;
  }
}
.news_teamsList .Txt .title {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 480px) {
  .news_teamsList .Txt .title {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
.news_teamsList .Txt .title a {
  display: block;
  font-size: clamp(22px, 1.36vw, 26px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_teamsList .Txt .textEditor {
  flex: 1;
  overflow-y: auto;
  margin: 0;
}
.news_teamsList .Txt .textEditor::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.news_teamsList .Txt .textEditor::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #dbdbdb;
}
.news_teamsList .Txt .textEditor::-webkit-scrollbar-thumb {
  background: #0082A3;
}

.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: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}