:root {
  --cMain: #3a4d4b;
  --cSub: #1f827a;
  --cBannerText: #e7ffd1;
  --cLight: #91B55E;
  --cBorder: #D6D6D6;
  --cMainLighten: #6d948e;
  --cSubDarken: #1f756d;
}

* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-weight: normal;
  margin: 0;
  letter-spacing: 1px;
}

a {
  text-decoration: none !important;
}
a:hover {
  cursor: pointer;
}

p {
  margin: 0;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none !important;
  outline-offset: 0 !important;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none !important;
}

.newsMain {
  position: relative;
}
.newsMain .contentContainer {
  padding: 4rem 3rem;
}
@media only screen and (max-width: 576px) {
  .newsMain .contentContainer {
    padding: 2rem;
  }
}
@media only screen and (max-width: 400px) {
  .newsMain .contentContainer {
    padding: 2rem 1rem;
  }
}
.newsMain .newsList {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 50vh;
  position: relative;
  z-index: 1;
}
.newsMain .newsList .new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.831372549);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.3rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 13px;
  color: #000;
  transition: 0.3s all;
  transform: translateX(0);
}
.newsMain .newsList .new .left, .newsMain .newsList .new .leftContent, .newsMain .newsList .new .labelList {
  display: flex;
  align-items: center;
}
.newsMain .newsList .new .left {
  max-width: calc(100% - 105px);
  width: 100%;
}
@media only screen and (max-width: 865px) {
  .newsMain .newsList .new .left {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 576px) {
  .newsMain .newsList .new .left {
    max-width: calc(100% - 50px);
  }
}
@media only screen and (max-width: 400px) {
  .newsMain .newsList .new .left {
    max-width: 100%;
  }
}
.newsMain .newsList .new .leftContent .date {
  color: var(--cMain);
  opacity: 0.8;
  font-weight: bold;
}
@media only screen and (max-width: 865px) {
  .newsMain .newsList .new .leftContent .date {
    font-size: 14px;
  }
}
.newsMain .newsList .new .leftContent .labelList {
  margin: 0 1rem;
}
@media only screen and (max-width: 865px) {
  .newsMain .newsList .new .leftContent .labelList {
    margin: 0 0.5rem;
  }
}
.newsMain .newsList .new .leftContent .labelList .label {
  padding: 0.5rem;
  border-radius: 1rem;
  font-size: 12px;
  margin: 0 0.3rem;
  background: #D2D2D2;
  flex: 1 0 auto;
}
@media only screen and (max-width: 865px) {
  .newsMain .newsList .new .leftContent .labelList .label {
    margin: 0 0.1rem;
  }
}
.newsMain .newsList .new .leftContent .labelList .label.activityLable {
  background: var(--cSub);
  color: var(--cBannerText);
}
.newsMain .newsList .new .title {
  color: var(--cMain);
  font-weight: bold;
  margin-right: 1rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 285px);
}
@media only screen and (max-width: 865px) {
  .newsMain .newsList .new .title {
    width: calc(100% - 10px);
    margin-top: 0.3rem;
    font-size: 14px;
  }
}
@media only screen and (max-width: 865px) {
  .newsMain .newsList .new .title {
    width: 100%;
  }
}
.newsMain .newsList .new .goBtn {
  min-width: 103px;
  border: 2px solid var(--cSub);
  color: var(--cSub);
  border-radius: 0.3rem;
  padding: 0.5rem 0.7rem;
  font-size: 14px;
  transition: 0.3s all;
}
@media only screen and (max-width: 576px) {
  .newsMain .newsList .new .goBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50px;
    min-width: 50px;
    line-height: 1.2;
    font-size: 12px;
  }
}
@media only screen and (max-width: 400px) {
  .newsMain .newsList .new .goBtn {
    display: none;
  }
}
.newsMain .newsList .new:hover {
  transform: translateX(15px);
}
.newsMain .newsList .new:hover .goBtn {
  background: var(--cSub);
  color: #fff;
}/*# sourceMappingURL=news.css.map */