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

.newDetailMain {
  position: relative;
}
.newDetailMain .contentContainer {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 576px) {
  .newDetailMain .contentContainer {
    padding: 2rem;
  }
}
@media only screen and (max-width: 400px) {
  .newDetailMain .contentContainer {
    padding: 2rem 1rem;
  }
}
.newDetailMain .newBg {
  background: rgba(255, 255, 255, 0.6431372549);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  min-height: 50vh;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.97);
  border-radius: 5px;
  padding: 2rem 3rem;
}
@media only screen and (max-width: 576px) {
  .newDetailMain .newBg {
    padding: 1rem;
  }
}
.newDetailMain .newBg .top {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cBorder);
}
.newDetailMain .newBg .top .topCotent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .newDetailMain .newBg .top .topCotent {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.newDetailMain .newBg .top .topCotent .date {
  color: var(--cMainLighten);
}
@media only screen and (max-width: 400px) {
  .newDetailMain .newBg .top .topCotent .date {
    font-size: 12px;
  }
}
.newDetailMain .newBg .top .topCotent .labelList {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .newDetailMain .newBg .top .topCotent .labelList {
    margin-bottom: 0.5rem;
    align-self: flex-end;
  }
}
.newDetailMain .newBg .top .topCotent .labelList .label {
  border: 1px solid var(--cSub);
  padding: 0.5rem;
  color: var(--cSub);
  border-radius: 1rem;
  margin: 0 0.3rem;
  font-size: 14px;
}
@media only screen and (max-width: 400px) {
  .newDetailMain .newBg .top .topCotent .labelList .label {
    font-size: 12px;
  }
}
.newDetailMain .newBg .top .topCotent .labelList .label:first-child {
  margin-left: 0;
}
.newDetailMain .newBg .top .topCotent .labelList .label:last-child {
  margin-right: 0;
}
.newDetailMain .newBg .top .title {
  font-size: 24px;
  color: var(--cSub);
  font-weight: bold;
  margin-top: 0.5rem;
  line-height: 1.5;
}
@media only screen and (max-width: 576px) {
  .newDetailMain .newBg .top .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .newDetailMain .newBg .top .title {
    font-size: 18px;
  }
}
.newDetailMain .newBg .editor {
  padding: 1.5rem 0;
  color: var(--cMain);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.newDetailMain .newBg .editor p {
  margin-bottom: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 400px) {
  .newDetailMain .newBg .editor p {
    font-size: 14px;
  }
}
.newDetailMain .newBg .editor .linkBtn {
  border: 1px solid var(--cBorder);
  background: rgba(255, 255, 255, 0.7725490196);
  display: flex;
  align-items: center;
  padding: 0.7rem;
  color: var(--cMain);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  transition: 0.3s all;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px;
}
@media only screen and (max-width: 400px) {
  .newDetailMain .newBg .editor .linkBtn {
    font-size: 14px;
    padding: 0.5rem;
  }
}
.newDetailMain .newBg .editor .linkBtn .linkText {
  margin: 0 0.5rem 0 0;
}
.newDetailMain .newBg .editor .linkBtn .linkIcon {
  background: var(--cSub);
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 20px;
}
.newDetailMain .newBg .editor .linkBtn:hover {
  background: var(--cBannerText);
  box-shadow: rgba(28, 66, 54, 0.25) 0px 5px 15px;
}
.newDetailMain .returnBtn {
  color: var(--cMain);
  border: 1.5px solid var(--cMain);
  padding: 1rem 3rem;
  background: #fff;
  border-radius: 5rem;
  align-self: center;
  margin-top: 2rem;
  font-weight: bold;
  transition: 0.3s all;
}
@media only screen and (max-width: 400px) {
  .newDetailMain .returnBtn {
    font-size: 14px;
    padding: 1rem 2rem;
  }
}
.newDetailMain .returnBtn:hover {
  background: var(--cMain);
  color: #fff;
}/*# sourceMappingURL=newDetail.css.map */