:root {
  --RWDWidth: 1024px;
}

.newsList {
  background: url('../images/in/inbg3.png'), linear-gradient(70deg, #333230 30%, #000 80%);
  background-position: right top;
  background-repeat: no-repeat;
}
.newsList .pageTitleBox .contentBox {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .newsList .pageTitleBox .contentBox {
    align-items: flex-start;
    flex-direction: column;
  }
}
.newsList .pageTitleBox .contentBox .title {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .newsList .pageTitleBox .contentBox .title {
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.newsList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 40px;
}
@media screen and (max-width: 1100px) {
  .newsList .listBox {
    gap: 40px 20px;
  }
}
.newsList .item {
  width: calc((100% - 40px * (3 - 1)) / 3);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .newsList .item {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
@media screen and (max-width: 767px) {
  .newsList .item {
    width: calc((100% - 20px * (1 - 1)) / 1);
  }
}
.newsList .item:hover .pic img {
  opacity: 1;
  transform: scale(1.05);
}
.newsList .item:hover .info::before {
  opacity: 0.75;
  background: linear-gradient(to bottom, #81172b 0%, black 100%);
}
.newsList .item:hover .info .title {
  color: #fff;
}
.newsList .item:hover .info .description {
  color: #fff;
}
.newsList .item:hover .info i {
  opacity: 1;
}
.newsList .item a {
  display: block;
  padding: 20px 20px 0 0;
  position: relative;
}
.newsList .item .pic {
  background: #dcdedd;
  overflow: hidden;
  aspect-ratio: 45/40;
  transition: all 0.3s ease;
}
.newsList .item .pic img {
  opacity: 0;
  transition: all 0.3s ease;
}
.newsList .item .info {
  position: absolute;
  top: 0;
  right: 0;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 20px 50px;
  isolation: isolate;
}
@media screen and (max-width: 1440px) {
  .newsList .item .info {
    padding: 20px 40px;
    gap: 20px;
  }
}
.newsList .item .info::before {
  content: '';
  inset: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(136, 136, 136, 0.15);
  transition: all 0.3s ease;
  z-index: -1;
}
.newsList .item .info i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e66e0d;
  opacity: 0;
  transition: all 0.3s ease;
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  flex-shrink: 0;
}
.newsList .item .info i::after {
  content: '';
  width: 16px;
  height: 16px;
  -webkit-mask: url('../images/icon/icon_arrow_more.svg') center no-repeat;
  mask: url('../images/icon/icon_arrow_more.svg') center no-repeat;
  background: #fff;
}
.newsList .item .title {
  min-height: 50px;
  font-size: var(--clamp24);
  line-height: 1.2;
  position: relative;
  color: #212121;
  transition: all 0.3s ease;
  overflow: hidden;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
}
.newsList .item .description {
  font-size: var(--clamp18);
  line-height: 1.4;
  color: #000;
  transition: all 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.newsDetail {
  background: url('../images/in/inbg3.png'), linear-gradient(70deg, #333230 30%, #000 80%);
  background-position: right top;
  background-repeat: no-repeat;
}
.newsDetail .pageTitleBox {
  margin-bottom: 50px;
}
.newsDetail .pageTitleBox .title {
  font-size: var(--clamp54);
}
.newsDetail .siteMain .topBox {
  position: relative;
  z-index: 2;
}
.newsDetail .siteMain .topBox .contentBox {
  max-width: 1675px;
  display: flex;
  align-items: flex-start;
  gap: 90px;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 1024px) {
  .newsDetail .siteMain .topBox .contentBox {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .newsDetail .siteMain .topBox .contentBox {
    flex-direction: column;
  }
}
.newsDetail .siteMain .topBox .contentBox .picBox {
  position: sticky;
  top: 70px;
}
@media screen and (max-width: 1440px) {
  .newsDetail .siteMain .topBox .contentBox .picBox {
    width: 40%;
    margin-bottom: auto;
  }
}
@media screen and (max-width: 767px) {
  .newsDetail .siteMain .topBox .contentBox .picBox {
    position: relative;
    top: auto;
    width: 100%;
  }
}
.newsDetail .siteMain .topBox .contentBox .picBox .pic {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.4);
}
.newsDetail .siteMain .topBox .contentBox .picBox img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.newsDetail .siteMain .topBox .contentBox .picBox .pageBtnBox {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .newsDetail .siteMain .topBox .contentBox .picBox .back {
    display: none;
  }
}
.newsDetail .siteMain .topBox .contentBox .infoBox {
  width: 50%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1440px) {
  .newsDetail .siteMain .topBox .contentBox .infoBox {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .newsDetail .siteMain .topBox .contentBox .infoBox {
    width: 100%;
  }
}
.newsDetail .siteMain .topBox .contentBox .infoBox .back {
  position: relative;
}
@media screen and (min-width: 768px) {
  .newsDetail .siteMain .topBox .contentBox .infoBox .back {
    display: none;
  }
}
.newsDetail .siteMain .topBox .editor {
  color: #999999;
  font-size: var(--clamp18);
} /*# sourceMappingURL=news.css.map */
