:root {
  --RWDWidth: 1024px;
}

.newsList .pageTitle {
  color: #004387;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
  font-size: var(--clamp36);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .newsList .pageTitle {
    margin-bottom: 20px;
  }
}
.newsList .pageTitle span {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: var(--clamp48);
}
.newsList .topInfo {
  max-width: 1170px;
  margin: 0 auto 50px;
  font-weight: 600;
  color: #000;
  font-size: var(--clamp21);
  text-align: center;
}
.newsList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 40px;
}
@media screen and (max-width: 1024px) {
  .newsList .listBox {
    gap: 40px 20px;
  }
}
.newsList .item {
  width: calc((100% - 40px * (3 - 1)) / 3);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .newsList .item {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
@media screen and (max-width: 550px) {
  .newsList .item {
    width: calc((100% - 20px * (1 - 1)) / 1);
  }
}
.newsList .item:hover .pic {
  border-color: #004387;
  box-shadow: 0 0 10px 0 rgba(126, 206, 244, 0.5);
}
.newsList .item:hover .pic img {
  transform: scale(1.05);
}
.newsList .item:hover .info::before {
  background: linear-gradient(to bottom, #7ecef4 0%, rgba(126, 206, 244, 0) 100%);
}
.newsList .item:hover .info i::before {
  background: #0075c2;
}
.newsList .item .pic {
  background: #fff;
  overflow: hidden;
  border: #9bbad9 1px solid;
  aspect-ratio: 433/325;
  box-shadow: 0 0 10px 0 rgba(126, 206, 244, 0);
  transition: all 0.3s ease;
}
.newsList .item .pic img {
  transition: all 0.3s ease;
}
.newsList .item .info {
  padding: 20px 20px 0 0;
  position: relative;
}
.newsList .item .info::before {
  content: '';
  width: 130px;
  height: 120px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
  background: linear-gradient(to bottom, #e5eef5 0%, rgba(229, 238, 245, 0) 100%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .newsList .item .info::before {
    width: 100px;
    height: 90px;
  }
}
.newsList .item .info i::before {
  content: '';
  width: 70px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
  background: #b5cde1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .newsList .item .info i::before {
    width: 60px;
    height: 50px;
  }
}
.newsList .item .info i::after {
  content: '';
  width: 16px;
  height: 9px;
  position: absolute;
  right: 10px;
  top: 15px;
  -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;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .newsList .item .info i::after {
    right: 8px;
    top: 10px;
  }
}
.newsList .item .title {
  font-size: var(--clamp21);
  line-height: 1.2;
  position: relative;
  color: #004387;
  transition: all 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.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: 2;
  -webkit-box-orient: vertical;
}

.newsDetail .mainBox .topBox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .newsDetail .mainBox .topBox {
    flex-direction: column;
  }
}
.newsDetail .mainBox .topBox .pic {
  max-width: 433px;
  background: #fff;
  overflow: hidden;
  border: #9bbad9 1px solid;
  aspect-ratio: 433/325;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .newsDetail .mainBox .topBox .pic {
    width: 100%;
    max-width: none;
    order: 5;
    margin: 0 auto;
  }
}
.newsDetail .mainBox .topBox .info {
  padding: 45px 0 45px 45px;
  flex-grow: 1;
  align-self: stretch;
  background: linear-gradient(to right, #f3f5fa 0%, rgba(243, 245, 250, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .newsDetail .mainBox .topBox .info {
    width: 100%;
    padding: 20px 0 20px 20px;
  }
}
.newsDetail .mainBox .topBox .info .title {
  font-size: var(--clamp40);
  font-weight: bold;
  color: #004387;
  margin-bottom: 10px;
  line-height: 1.4;
}
.newsDetail .mainBox .topBox .info .description {
  font-size: var(--clamp21);
  color: #333333;
}
.newsDetail .editor .picBox {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .newsDetail .editor .picBox {
    flex-direction: column;
  }
}
.newsDetail .editor .picBox img {
  max-width: 50%;
}
@media screen and (max-width: 1024px) {
  .newsDetail .editor .picBox img {
    max-width: none;
  }
}

.catalogList {
  --left: 50px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .catalogList {
    --left: 30px;
  }
}
.catalogList .mainBox {
  position: relative;
}
.catalogList .mainBox::before {
  content: '';
  position: absolute;
  height: 39%;
  right: 0px;
  left: 0;
  bottom: 0px;
  background: url('../images/in/abg.jpg') center top repeat;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .catalogList .mainBox::before {
    height: 30%;
  }
}
@media screen and (max-width: 767px) {
  .catalogList .mainBox::before {
    display: none;
  }
}
.catalogList .pageTitle {
  color: #004387;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
  font-size: var(--clamp36);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .catalogList .pageTitle {
    margin-bottom: 20px;
  }
}
.catalogList .pageTitle span {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: var(--clamp48);
}
.catalogList .topInfo {
  max-width: 1170px;
  margin: 0 auto 60px;
  text-align: center;
  font-weight: 600;
  color: #000;
  font-size: var(--clamp21);
}
.catalogList .listBox {
  position: relative;
}
.catalogList .item {
  display: flex;
  align-items: center;
  padding-left: 1px;
}
@media screen and (max-width: 767px) {
  .catalogList .item {
    flex-direction: column;
  }
}
.catalogList .item .pic {
  max-width: 800px;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .catalogList .item .pic {
    width: 100%;
    margin-bottom: 10px;
  }
}
.catalogList .item .infoBox {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .catalogList .item .infoBox {
    width: 100%;
  }
}
.catalogList .item .title {
  font-size: var(--clamp40);
  margin: 0 0 30px var(--left);
  color: #004387;
}
@media screen and (max-width: 1024px) {
  .catalogList .item .title {
    margin: 0 0 20px var(--left);
  }
}
@media screen and (max-width: 767px) {
  .catalogList .item .title {
  }
}
.catalogList .item .download {
  font-size: var(--clamp24);
  color: #fff;
  padding: 30px 95px 30px var(--left);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.4;
  position: relative;
  isolation: isolate;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .catalogList .item .download {
    padding: 20px 95px 20px var(--left);
  }
}
.catalogList .item .download:hover::before {
  background: #004387;
}
.catalogList .item .download:hover i::before {
  animation: scrollUp 1s ease-in-out infinite;
}
.catalogList .item .download::before {
  content: '';
  position: absolute;
  inset: 0 20px 0 0;
  display: block;
  background: #0075c2;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  z-index: -1;
  transition: all 0.3s ease;
}
.catalogList .item .download::after {
  content: '';
  position: absolute;
  inset: 20px 0px -20px 0;
  display: block;
  background: #7ecef4;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  z-index: -2;
}
.catalogList .item .download i {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .catalogList .item .download i {
    width: 50px;
    height: 50px;
  }
}
.catalogList .item .download i::before {
  content: '';
  width: 20px;
  height: 20px;
  -webkit-mask: url('../images/icon/icon_download.svg') center no-repeat;
  mask: url('../images/icon/icon_download.svg') center no-repeat;
  background: #fff;
}
.catalogList .swiper-pagination {
  width: auto;
  position: absolute;
  z-index: 9;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  transform: none;
  bottom: 0;
  top: 50%;
  margin-top: 180px;
  left: calc(57.5% + var(--left));
}
@media screen and (max-width: 1024px) {
  .catalogList .swiper-pagination {
    top: auto;
    margin-top: 0;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.catalogList .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 15px;
  height: 15px;
  background: transparent;
  padding: 0;
  margin: 0;
  opacity: 1;
  box-sizing: content-box;
  position: relative;
  background: #7ecef4;
}
@media screen and (max-width: 767px) {
  .catalogList .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.catalogList .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #004387;
}

.videoList .mainBox {
  padding-bottom: 0;
}
.videoList .pageTitle {
  color: #004387;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
  font-size: var(--clamp36);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .videoList .pageTitle {
    margin-bottom: 20px;
  }
}
.videoList .pageTitle span {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: var(--clamp48);
}
.videoList .topInfo {
  max-width: 1170px;
  margin: 0 auto 50px;
  font-weight: 600;
  color: #000;
  font-size: var(--clamp21);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .videoList .topInfo {
    margin: 0 auto 20px;
  }
}
.videoList .listBox {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.videoList .listBox::before {
  content: '';
  height: 80%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f3f5fa;
  z-index: -1;
  display: block;
  position: absolute;
}
.videoList .listBox .contentBox {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .videoList .listBox .contentBox {
    padding: 0 50px;
  }
}
.videoList .listBox .title {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 10px 40px;
  line-height: 1.4;
  background: #0075c2;
  -webkit-clip-path: polygon(30px 0%, 100% 0%, calc(100% - 30px) 100%, 0% 100%);
  clip-path: polygon(30px 0%, 100% 0%, calc(100% - 30px) 100%, 0% 100%);
  margin: 0 auto;
  transform: translateY(50%);
  font-size: var(--clamp24);
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .videoList .listBox .title {
    transform: translateY(20%);
    font-size: var(--clamp18);
  }
}
.videoList .swiper {
  max-width: 816px;
  padding-bottom: clamp(50px, 10vw, 100px);
  margin: 0 auto;
  overflow: visible;
}
.videoList .swiper .swiper-slide {
  transform: scale(0.8);
  filter: grayscale(1) brightness(1);
  transition: all 0.3s ease;
}
.videoList .swiper .swiper-slide-active {
  filter: grayscale(0) brightness(1);
  transform: scale(1);
}
.videoList .swiper .swiper-slide-active .title {
  opacity: 1;
}
.videoList .swiperArrow {
  width: 55px;
  aspect-ratio: 55/152;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .videoList .swiperArrow {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .videoList .swiperArrow {
    width: 30px;
    top: 55%;
  }
}
.videoList .swiperArrow::after {
  content: '';
  width: 55px;
  aspect-ratio: 55/152;
  display: block;
  background: url('../images/icon/icon_arrow_swiper.svg') center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .videoList .swiperArrow::after {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .videoList .swiperArrow::after {
    width: 30px;
  }
}
.videoList .swiperArrow.swiper-button-prev {
  left: 10px;
}
@media screen and (max-width: 767px) {
  .videoList .swiperArrow.swiper-button-prev {
    left: 0px;
  }
}
.videoList .swiperArrow.swiper-button-next {
  right: 10px;
}
@media screen and (max-width: 767px) {
  .videoList .swiperArrow.swiper-button-next {
    right: 0px;
  }
}
.videoList .swiperArrow.swiper-button-next::after {
  transform: rotate(180deg);
}
.videoList .swiperArrow:hover::after {
  opacity: 0.8;
  background: url('../images/icon/icon_arrow_swiper_.svg') center no-repeat;
}

.technologyList .pageTitle {
  color: #004387;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
  font-size: var(--clamp36);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .technologyList .pageTitle {
    margin-bottom: 20px;
  }
}
.technologyList .pageTitle span {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: var(--clamp48);
}
.technologyList .topInfo {
  max-width: 1170px;
  margin: 0 auto 50px;
  font-weight: 600;
  color: #000;
  font-size: var(--clamp21);
}
.technologyList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 40px;
}
@media screen and (max-width: 1024px) {
  .technologyList .listBox {
    gap: 40px 20px;
  }
}
.technologyList .item {
  width: calc((100% - 40px * (3 - 1)) / 3);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .technologyList .item {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
@media screen and (max-width: 550px) {
  .technologyList .item {
    width: calc((100% - 20px * (1 - 1)) / 1);
  }
}
.technologyList .item:hover .pic {
  border-color: #004387;
  box-shadow: 0 0 10px 0 rgba(126, 206, 244, 0.5);
}
.technologyList .item:hover .pic img {
  transform: scale(1.05);
}
.technologyList .item:hover .pic::before {
  opacity: 1;
}
.technologyList .item:hover .info::before {
  background: linear-gradient(to bottom, #7ecef4 0%, rgba(126, 206, 244, 0) 100%);
}
.technologyList .item:hover .info i::before {
  background: #0075c2;
}
.technologyList .item .pic {
  background: #fff;
  overflow: hidden;
  border: #9bbad9 1px solid;
  aspect-ratio: 433/325;
  box-shadow: 0 0 10px 0 rgba(126, 206, 244, 0);
  transition: all 0.3s ease;
  isolation: isolate;
  position: relative;
}
.technologyList .item .pic img {
  transition: all 0.3s ease;
}
.technologyList .item .pic::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 9;
  background: rgba(0, 117, 194, 0.35);
  opacity: 0;
  transition: all 0.3s ease;
}
.technologyList .item .info {
  padding: 20px 20px 0 0;
  position: relative;
}
.technologyList .item .info::before {
  content: '';
  width: 130px;
  height: 120px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
  background: linear-gradient(to bottom, #e5eef5 0%, rgba(229, 238, 245, 0) 100%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .technologyList .item .info::before {
    width: 100px;
    height: 90px;
  }
}
.technologyList .item .info i::before {
  content: '';
  width: 70px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
  background: #b5cde1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .technologyList .item .info i::before {
    width: 60px;
    height: 50px;
  }
}
.technologyList .item .info i::after {
  content: '';
  width: 16px;
  height: 9px;
  position: absolute;
  right: 10px;
  top: 15px;
  -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;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .technologyList .item .info i::after {
    right: 8px;
    top: 10px;
  }
}
.technologyList .item .title {
  font-size: var(--clamp21);
  line-height: 1.2;
  position: relative;
  color: #004387;
  transition: all 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.technologyList .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: 2;
  -webkit-box-orient: vertical;
} /*# sourceMappingURL=news.css.map */
