:root {
  --content-width: 1430px;
}

.row .wrapper {
  width: 100%;
  box-sizing: border-box;
}

:root {
  --swiper-pagination-color: transparent;
  --swiper-pagination-bullet-width: 0.15rem;
  --swiper-pagination-bullet-height: 0.15rem;
  --swiper-pagination-bullet-size: 0.2rem;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.3);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 0.2rem;

  --swiper-pagination-bullet-vertical-gap: 0.1rem;

  --swiper-navigation-color: #fff;
  --swiper-navigation-size: 0.2rem;
}

@media screen and (min-width: 1201px) {
  :root {
    --safe-area-inset: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --safe-area-inset: 1rem;
  }
}

.swiper-pagination-bullet {
  position: relative;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  box-shadow: 0 0 0 0.02rem rgba(255, 255, 255, 1);
}

.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--swiper-pagination-bullet-width) * 0.4);
  height: calc(var(--swiper-pagination-bullet-width) * 0.4);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 0.28rem;
}

.swiper-slide {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
}

.row {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  padding-top: var(--global-header-height);
}

.swiper-slide-last {
}

.swiper-slide-last .row {
  height: auto;
}

.index_01 {
  background-image: url("../images/home/bg1.jpg");
}

/* .index_02 {
  background-image: url("../images/home/bg2.jpg");
} */

.index_03 {
  background-image: url("../images/home/bg3.jpg");
}

.index_04 {
  background-image: url("../images/home/bg4.jpg");
}

.index_03 .flex-box-right {
  padding-left: 0.66rem;
  padding-top: 0.2rem;
}

.index_03 .pic {
  border-radius: var(--border-radius);
}

.index_03 .mod .mod-hd {
  margin-bottom: 0.44rem;
}

.news-list-item a {
  display: block;
}

.news-list-item .meta {
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.24rem 0.36rem;
  display: flex;
}

.news-list-item .meta::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  left: -0.06rem;
  top: 24%;
  width: 0;
  height: 0;
  border-top: 0.08rem solid transparent;
  border-bottom: 0.08rem solid transparent;
  border-right: 0.08rem solid #ffffff;
  opacity: 0;
}

.news-list-item .desc {
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow: hidden;
  line-height: 1.75;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font16);
}

.news-list-item .date {
  transition: all 0.3s;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font16);
  min-width: 1.08rem;
}

.news-list-item:hover {
  box-shadow: var(--ant-box-shadow-card);
}

.news-list > li.on .news-list-item .meta {
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
  border-bottom: 0 none;
  filter: drop-shadow(0px 0.04rem 0.12rem 0px rgba(0, 0, 0, 1));
}

.news-list > li.on .news-list-item .desc {
  color: rgba(119, 119, 119, 1);
}

.news-list > li.on .news-list-item .date {
  font-weight: bold;
  color: var(--main-color);
}

.news-list > li.on .news-list-item .date {
  font-weight: bold;
  color: var(--main-color);
}

.news-list > li.on .news-list-item .meta::after {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .row {
    height: auto;
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .index_03 .flex-box {
    flex-direction: column-reverse;
  }

  .index_03 .flex-box-right {
    margin-bottom: 24px;
  }

  .news-list-item .meta {
    flex: auto;
    width: 100%;
    padding: 16px 12px;
    flex-wrap: wrap;
  }

  .news-list-item .title {
    font-size: 14px;
    margin-bottom: 4px;
    width: 100%;
  }

  .news-list-item .desc {
    font-size: 12px;
    margin-bottom: 4px;
    width: 100%;
  }

  .news-list-item .date {
    font-size: 12px;
    width: 100%;
  }
  .news-list-item .meta::after {
    display: none;
  }
}

/* index_04 */

.index_04 .mod-bd {
  margin-bottom: 0.6rem;
}

.index_04 .mod-ft {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.index_04 .info {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font16);
  line-height: 1.75;
  text-align: justify;
  max-width: 1225px;
  margin: 0 auto 0.6rem;
}

@media only screen and (min-width: 768px) {
  .career-list {
    --gap: 0.2rem;
    --item-margin-bottom: 0;
  }
}

.career-list-item {
  position: relative;
  height: 100%;
}

.career-list-item .meta {
  box-sizing: border-box;
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--padding16);
  border-radius: var(--border-radius);
}

.career-list-item .title {
  transition: all 0.5s;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font24);
  font-weight: bold;
  letter-spacing: 2px;
}

.career-list-item .more {
  box-sizing: border-box;
  transition: all 0.5s;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 0.62rem;
  height: 0.52rem;
  padding-bottom: 0.05rem;
  color: #fff;
}

.career-list-item .more svg,
.career-list-item .more img {
  width: 0.29rem;
  height: 0.29rem;
}

.career-list-item:hover .meta {
  background-color: rgba(0, 0, 0, 0.5);
}

.career-list-item:hover .title {
  color: var(--main-color);
}

.career-list-item:hover .more {
  transform: translateY(-4px);
}

.pro-list {
  --h: 60vh;

  display: flex;
  margin: 0 -0.2rem;
}

.pro-list > li {
  transition: 0.5s;
  box-sizing: border-box;
  width: 20%;
  padding: 0 0.2rem;
}

@media only screen and (min-width: 768px) {
  .pro-list > li.on {
    width: 40%;
  }

  .pro-list > li:nth-child(2),
  .pro-list > li:nth-child(4) {
    padding-top: 0.44rem;
  }
}

/* item */

.pro-list-item .pic,
.pro-list-item .pic img,
.pro-list-item .meta {
  border-radius: var(--border-radius);
}

.pro-list-item {
  height: var(--h);
}

.pro-list-item a {
  display: block;
  position: relative;
  height: 100%;
}

.pro-list-item .pic {
  height: 100%;
  overflow: hidden;
}

.pro-list-item .pic img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro-list-item:hover img {
  transform: scale(1.1);
}

.pro-list-item .meta {
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.12rem;
  padding-top: 1.12rem;
  background: linear-gradient(180deg, rgba(0, 27, 49, 1), rgba(0, 27, 49, 0) 100%);
}

.pro-list-item .overlay-title,
.pro-list-item .title {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font24);
  font-weight: bold;

  position: relative;
  text-align: center;
}

.pro-list-item .overlay-title {
  /* transition: all 0.7s; */
  font-size: var(--font36);
  opacity: 0;
  min-width: 5rem;

  text-align: center;
  padding-bottom: 0.36rem;
  margin-bottom: 0.36rem;
}

.pro-list-item .overlay-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3em;
  height: 1px;
  background-color: rgba(2, 205, 205, 1);
  transition: all 0.5s;
  opacity: 0;
}

.pro-list-item .desc {
  transition: all 0.5s;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font18);
  line-height: 1.75;
  text-align: center;
  margin-bottom: 0.32rem;
  opacity: 0;
}

.pro-list-item .btn {
  transition: all 0.5s;
  opacity: 0;
}

/* active */

.pro-list > li.on .pro-list-item .meta {
  background: rgba(0, 29, 50, 0.65);
  padding-top: 0;
  padding-bottom: 0;
  justify-content: center;
}

.pro-list > li.on .pro-list-item .title {
  display: none;
}

.pro-list > li.on .pro-list-item .desc,
.pro-list > li.on .pro-list-item .btn {
  opacity: 1;
}

.pro-list > li.on .pro-list-item .overlay-title,
.pro-list > li.on .pro-list-item .overlay-title::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .pro-list {
    flex-wrap: wrap;
  }

  .pro-list > li {
    width: 100% !important;
    margin-bottom: 24px;
  }

  .pro-list > li .pro-list-item .meta {
    background: rgba(0, 29, 50, 0.65);
    padding-top: 0;
    padding-bottom: 0;
    justify-content: center;
  }

  .pro-list > li .pro-list-item .title {
    display: none;
  }

  .pro-list > li .pro-list-item .desc,
  .pro-list > li .pro-list-item .btn {
    opacity: 1;
  }

  .pro-list > li .pro-list-item .overlay-title,
  .pro-list > li .pro-list-item .overlay-title::after {
    opacity: 1;
  }
}

.case-area-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding-left: 25%;
}

.case-area {
  --pic-width: 4.25rem;
  --pic-height: 3.18rem;
}

.case-area {
  position: relative;
  box-sizing: border-box;
  height: 100%;
}

.case-area .swiper {
  height: 100%;
}

.case-area .swiper-slide a {
  display: block;
  height: 100%;
}

.case-list-item {
  box-sizing: border-box;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  padding-top: var(--global-header-height);

  padding-left: 20%;
}

@media only screen and (max-width: 1200px) {
  .case-list-item {
    padding-left: 15%;
  }
}

.case-list-item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.case-list-item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-list-item .wrap {
  box-sizing: border-box;
  height: 5rem;
  width: 100%;
  display: flex;
  padding-right: var(--safe-area-inset);
}

.case-list-item .wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 95%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 205, 205, 0.84), rgba(33, 164, 241, 0.84));
  clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
}

.case-list-item a {
}

.case-list-item .pic-area {
  width: var(--pic-width);
  height: var(--pic-height);
  margin-top: 0.77rem;
  /* position: absolute;
  top: 0.77rem;
  left: 0; */
}

.case-list-item .meta {
  flex: 1;
  box-sizing: border-box;
  padding-left: 0.08rem;
  padding-top: 1.24rem;
}

.case-list-item .title {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font30);
  font-weight: bold;
  margin-bottom: 0.2rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow: hidden;
}

.case-list-item .desc {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font18);
  line-height: 1.75;
  text-align: justify;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow: hidden;
  height: 0.945rem;
}

.case-list-item .more-area {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: var(--safe-area-inset);
  bottom: 1rem;
}

.case-area .swiper-buttons {
  box-sizing: border-box;
  position: absolute;
  margin-left: var(--pic-width);
  margin-top: 1.56rem;
  left: 20%;
  top: 50%;
  width: 0.88rem;
  height: 0.36rem;
  z-index: 9;
}

@media only screen and (max-width: 1200px) {
  .case-area .swiper-buttons {
    left: 15%;
  }
}

.case-area .swiper-button-next,
.case-area .swiper-button-prev {
  border: 1px solid #fff;
  box-sizing: border-box;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  top: 0;
  margin-top: 0;
}

.case-area .swiper-button-prev,
.case-area .swiper-rtl .swiper-button-next {
  left: 0;
}

.case-area .swiper-button-next,
.case-area .swiper-rtl .swiper-button-prev {
  right: 0;
}

@media only screen and (max-width: 1480px) {
  .index_03 .flex-box,
  .index_04 .mod {
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical > .swiper-pagination-bullets {
    right: 0.16rem;
  }
}

@media only screen and (max-width: 767px) {
  .index_03 .flex-box,
  .index_04 .mod {
    padding-left: 0;
    padding-right: 0;
  }

  .index_02 {
    margin: 24px 0;
    height: 480px !important;
  }

  .case-area {
    --pic-width: 260px;
    --pic-height: 200px;
  }

  .case-list-item .wrap {
    height: auto;
    padding-right: 0;
    flex-wrap: wrap;
  }

  .case-list-item {
    padding: 0;
    align-items: flex-start;
  }

  .case-list-item .pic-area {
    position: relative;
    height: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-list-item .meta {
    padding: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    flex: none;
  }

  .case-list-item .desc {
    height: auto;
  }

  .case-list-item .more-area {
    bottom: -60px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .case-area .swiper-buttons {
    width: 72px;
    height: 28px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    bottom: 20px;
    top: auto;
  }

  .case-area .swiper-button-next,
  .case-area .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (min-width: 768px) {
  .footer {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
  }
}
