.newsList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .newsList .listBox {
    gap: 20px;
  }
}
.newsList .listBox .item {
  width: calc((100% - 80px) / 3);
  background: #FFF;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .newsList .listBox .item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .newsList .listBox .item {
    width: 100%;
  }
}
.newsList .listBox .item:hover {
  background: #13315F;
  border-color: #004080;
}
.newsList .listBox .item:hover .pic::before {
  opacity: 1;
}
.newsList .listBox .item:hover time {
  color: #0099FF;
}
.newsList .listBox .item:hover .title {
  color: #FFF;
}
.newsList .listBox .item:hover .description {
  color: #FFF;
  opacity: 0.6;
}
.newsList .pic {
  position: relative;
  isolation: isolate;
  border-bottom: 6px solid #018AF0;
}
.newsList .timeBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.newsList time {
  color: #333333;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9;
}
.newsList .more {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0099FF;
  display: flex;
  align-items: center;
}
.newsList .more::after {
  content: "";
  -webkit-mask: url("../images/icon/icon_more.svg") center no-repeat;
          mask: url("../images/icon/icon_more.svg") center no-repeat;
  background: #0099FF;
  width: 24px;
  height: 9px;
  display: block;
  order: 2;
  margin: 0 0 0 10px;
  flex-shrink: 0;
}
.newsList .info {
  padding: 30px;
}
.newsList .info .title {
  color: #06111F;
  font-size: 1.125rem;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.newsList .info .description {
  color: #444444;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}
.newsList .info .indexMore {
  color: #FFF;
  box-shadow: 0 0 10px 0 #E9BE5B;
  border: none;
  background: linear-gradient(to right, rgb(234, 100, 25) 0%, rgb(233, 190, 91) 100%);
}

.newsDetail .topBox {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .newsDetail .topBox {
    flex-direction: column;
  }
}
.newsDetail .topBox .pic {
  position: relative;
}
.newsDetail .info {
  background: #FFF;
  flex-grow: 1;
  position: relative;
  border: #E5E5E5 1px solid;
  border-width: 1px 1px 1px 0;
}
@media screen and (max-width: 1000px) {
  .newsDetail .info {
    width: 100%;
    border-width: 1px;
  }
}
.newsDetail .changePage {
  border-top: #E5E5E5 1px solid;
  display: flex;
  justify-content: flex-end;
  padding: 30px;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .newsDetail .changePage {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .newsDetail .changePage {
    padding: 20px;
  }
}
.newsDetail .changePage .arrows {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  line-height: 0;
  font-weight: 500;
  color: #0099FF;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.newsDetail .changePage .arrows i {
  display: flex;
  align-items: center;
}
.newsDetail .changePage .arrows i::before {
  content: "";
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #F5F5F5;
  border-radius: 100%;
  display: block;
  order: 3;
}
@media screen and (max-width: 1000px) {
  .newsDetail .changePage .arrows i::before {
    width: 30px;
    height: 30px;
  }
}
.newsDetail .changePage .arrows i::after {
  content: "";
  -webkit-mask: url("../images/icon/icon_more.svg") center no-repeat;
          mask: url("../images/icon/icon_more.svg") center no-repeat;
  background: #0099FF;
  width: 24px;
  height: 9px;
  display: block;
  order: 2;
  transform: translateX(15px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .newsDetail .changePage .arrows i::after {
    width: 20px;
    height: 9px;
  }
}
.newsDetail .changePage .arrows.prev i {
  transform: scaleX(-1);
  order: -1;
}
.newsDetail .changePage .arrows.next::before {
  content: "";
  height: 28px;
  width: 1px;
  background: #E5E5E5;
  position: absolute;
  left: -30px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .newsDetail .changePage .arrows.next::before {
    left: -15px;
  }
}
.newsDetail .changePage .arrows:hover {
  color: #004080;
}
.newsDetail .changePage .arrows:hover i::after {
  background: #004080;
}
.newsDetail time {
  background: #0099FF;
  color: #FFF;
  padding: 30px 60px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .newsDetail time {
    padding: 20px 40px;
    max-width: none;
    margin: 0;
  }
}
.newsDetail .title {
  font-size: 2.25rem;
  font-weight: bold;
  min-height: 220px;
  padding: 100px 30px 30px 10%;
}
@media screen and (max-width: 1000px) {
  .newsDetail .title {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .newsDetail .title {
    font-size: 1.5rem;
    min-height: 0;
    padding: 60px 30px 30px 10%;
  }
}
@media screen and (max-width: 575px) {
  .newsDetail .title {
    font-size: 1.5rem;
  }
}
.newsDetail .editor {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .newsDetail .editor {
    font-size: 1rem;
  }
}

.subMenu {
  position: relative;
  isolation: isolate;
  background: #FFF;
}
@media screen and (min-width: 1001px) {
  .subMenu {
    padding: 18px 20px;
    border-bottom: #E5E5E5 1px solid;
  }
  .subMenu ul {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .subMenu ul a {
    padding: 10px 25px;
    display: block;
    color: #B2B2B2;
    border-radius: 50px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    font-size: 1.3125rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .subMenu ul a::before {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    display: block;
    margin: auto;
    inset: 0;
    z-index: -1;
    background: #0099FF;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  .subMenu ul a:hover {
    color: #FFF;
  }
  .subMenu ul a:hover::before {
    height: 100%;
    width: 100%;
  }
  .subMenu ul li.active a {
    color: #FFF;
  }
  .subMenu ul li.active a::before {
    height: 100%;
    width: 100%;
  }
}
.subMenu button {
  display: none;
  width: 100%;
  background: #018AF0;
  color: #FFF;
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 1000px) {
  .subMenu button {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .subMenu ul {
    border-left: #018AF0 1px solid;
    border-right: #018AF0 1px solid;
    display: none;
  }
  .subMenu li {
    border-bottom: #018AF0 1px solid;
  }
  .subMenu li a {
    display: block;
    padding: 15px;
    text-align: center;
  }
}

.brochureList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}
.brochureList .listBox .item {
  width: calc((100% - 44px) / 2);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .brochureList .listBox .item {
    width: 100%;
  }
}
.brochureList .listBox .item .pic {
  width: 45%;
}
.brochureList .listBox .item .info {
  width: 55%;
  min-height: 80%;
  position: relative;
  border: #E5E5E5 1px solid;
  background: #FFF;
  display: flex;
  flex-direction: column;
}
.brochureList .listBox .item .title {
  padding: 50px;
  flex-grow: 1;
}
@media screen and (max-width: 1100px) {
  .brochureList .listBox .item .title {
    padding: 20px;
  }
}
.brochureList .listBox .item .download {
  max-width: 220px;
  padding: 18px 20px;
  background: #E6E6E6;
  color: #000;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  transform: translateY(50%);
}
@media screen and (max-width: 1100px) {
  .brochureList .listBox .item .download {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 767px) {
  .brochureList .listBox .item .download {
    max-width: none;
    margin: 0;
  }
}
.brochureList .listBox .item .download i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #666666;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.brochureList .listBox .item .download i::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  -webkit-mask: url("../images/icon/icon_download.svg") no-repeat center;
          mask: url("../images/icon/icon_download.svg") no-repeat center;
  background: #000;
  transition: all 0.3s ease;
}
.brochureList .listBox .item .download:hover {
  color: #FFF;
  background: #0099FF;
}
.brochureList .listBox .item .download:hover i {
  border-color: #FFF;
}
.brochureList .listBox .item .download:hover i::before {
  background: #fff;
}

.videoList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.videoList .listBox .item {
  width: calc((100% - 60px) / 2);
  border: #E5E5E5 1px solid;
  background: #FFF;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .videoList .listBox .item {
    width: 100%;
  }
}
.videoList .listBox .item:hover {
  background: #13315F;
  border-color: #004080;
}
.videoList .listBox .item:hover .pic::before {
  opacity: 1;
}
.videoList .listBox .item:hover .title {
  color: #FFF;
}
.videoList .listBox .item:hover .more::before {
  background: transparent;
  border-color: #0099FF;
}
.videoList .listBox .item .info {
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .videoList .listBox .item .info {
    flex-direction: column;
  }
}
.videoList .listBox .item .title {
  color: #06111F;
  font-size: 1.3125rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .videoList .listBox .item .title {
    font-size: 1.125rem;
  }
}
.videoList .listBox .item .more {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin: 0 0 0 40px;
  color: #0099FF;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .videoList .listBox .item .more {
    margin: 10px 0 0 0;
  }
}
.videoList .listBox .item .more::before {
  content: "";
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: #F5F5F5;
  border: 1px solid #F5F5F5;
  border-radius: 100%;
  display: block;
  order: 3;
  transition: all 0.3s ease;
}
.videoList .listBox .item .more::after {
  content: "";
  -webkit-mask: url("../images/icon/icon_more.svg") center no-repeat;
          mask: url("../images/icon/icon_more.svg") center no-repeat;
  background: #0099FF;
  width: 24px;
  height: 9px;
  display: block;
  order: 2;
  transform: translateX(15px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.videoList .pic {
  position: relative;
  isolation: isolate;
  border-bottom: 6px solid #018AF0;
}
.videoList .pic::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(0, 0, 0, 0.2) url("../images/in/video_top.png") center no-repeat;
}/*# sourceMappingURL=news.css.map */