/* 列表 */
.NyBigBox {
  padding: 0;
}

.CaseListBox {
  padding: 90px 84px;
}

.ListBox {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px 10px;
}

.List {
  position: relative;
}

.List .text {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 17px 30px;
  background: linear-gradient(180deg, #01368600 45%, #013686cc 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.List .text h1 {
  font-family: PuHuiTi65;
  font-size: 24px;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.List .text .More {
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

@media screen and (max-width: 1440px) {
  .CaseListBox {
    padding: 90px 5vw;
  }

  .List .text h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .CaseListBox {
    padding: 60px 5vw;
  }

  .itemCaseListBox {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 10px;
  }
}

@media screen and (max-width: 720px) {
  .CaseListBox {
    padding: 40px 5vw;
  }

  .itemCaseListBox {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px 10px;
  }

  .List .text {
    padding: 15px 20px;
  }

  .List .text h1 {
    font-size: 18px;
  }
}

.containerNav {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100px;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  grid-gap: 120px;
}

.containerNav a {
  width: 150px;
  padding-bottom: 20px;
  border-bottom: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}

.containerNav a.active {
  border-bottom: 6px solid var(--color);
}

.Box1 {
  padding-left: var(--container);
  padding-right: var(--container);
  padding-top: 75px;
  padding-bottom: 100px;
  background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/247/20240824095256_WHuAasfg.png) center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
}

.Box1 .text1 {
  width: 55%;
  padding-right: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Box1 .text1 h2 {
  margin-bottom: 45px;
  font-size: 38px;
  line-height: 1.5;
  color: #050505;
}

.Box1 .text1 p {
  font-size: 16px;
  line-height: 1.5;
  color: #7C7C7C;
}

.Box1 .imgBox1 {
  width: 45%;
  overflow: hidden;
  border-radius: 12px;
}

.Box1 .imgBox1 img {
  width: 100%;
}


@media (max-width:1200px) {  
  .containerNav {
    grid-gap: 10px;
    flex-wrap: wrap;
    height: auto;
  }
    
  .Box1 .text1 {
    padding-right: 15px;
  }
.containerNav a.active {
    border-bottom: 4px solid var(--color);
}
.containerNav a {
    width: 120px;
    padding-bottom: 10px;
    border-bottom: 4px solid #fff;
    font-size: 16px;
}
  .Box1 .text1 h2 {
    margin-bottom: 15px;
    font-size: 28px;
  }

  .Box1 .imgBox1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width:720px) {
  .Box1 .text1 {
    width: 100%;
    padding-right: 0;
    padding-bottom: 45px;
  }


  .Box1 .imgBox1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}




/* box2 */
.Box2 {
  background: #fff;
  padding: 90px var(--container);
  position: relative;
  z-index: 2;
}

.Box2::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #EFF6FD;
}

.itemBox2 {
  margin-top: 60px;
  background: #FFFFFF;
  box-shadow: 0px 26px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding-top: 75px;
  padding-bottom: 120px;
  display: flex;
}


.imgBox2 {
  width: 50%;
  padding: 0 120px;
}

.imgBox2 img {
  width: 100%;
}

.text2 {
  width: 50%;
  padding-right: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text2 p {
  position: relative;
  color: #414141;
  font-size: 16px;
  line-height: 3;
  padding-left: 15px;
}

.text2 p::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #414141;
  position: absolute;
  left: 0;
  top: 21px;
}

@media (max-width: 1600px) {
  .imgBox2 {
    width: 50%;
    padding: 0 60px;
  }
}

@media (max-width: 1440px) {
  .text2 p {
    line-height: 2;
  }

  .text2 p::before {
    top: 14px;
  }
}

@media (max-width: 1200px) {
  .itemBox2 {
    margin-top: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 720px) {
  .Box2 {
    padding: 60px var(--container);
  }

  .itemBox2 {
    margin-top: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
  }

  .imgBox2 {
    width: 100%;
    padding: 0 60px;
  }

  .text2 {
    width: 100%;
    padding-right: 0px;
  }
}

@media (max-width: 460px) {
  .imgBox2 {
    padding: 30px 0;
  }

  .itemBox2 {
    padding: 30px 15px;
  }
}

/* box3 */
.Box3 {
  background: #EFF6FD;
  padding: 90px var(--container);
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

.itemBox3 {
  width: 100%;
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 45px 30px;
}

.itemBox3 .raw-html-embed {
  background: #FFFFFF00;
  border: 1px solid #A9A9A9;
  border-radius: 35px;
  padding: 30px;
}

.itemBox3 h4 {
  font-weight: 700;
  font-size: 26px;
  color: #000000;
  margin-bottom: 15px;
}


.itemBox3 h5 {
  font-size: 16px;
  color: #898989;
}

@media (max-width: 1440px) {
  .itemBox3 {
    padding-top: 30px;
  }

  .itemBox3 .raw-html-embed {
    padding: 30px 15px;
  }
}

@media (max-width: 1200px) {
  .itemBox3 {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px 20px;
  }

  .itemBox3 .raw-html-embed {
    border-radius: 20px;
    padding: 30px 15px;
  }

  .itemBox3 h4 {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .itemBox3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .itemBox3 h4 {
    font-size: 18px;
  }

  .itemBox3 h5 {
    font-size: 14px;
  }
}

@media (max-width: 460px) {
  .itemBox3 {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .itemBox3 .raw-html-embed {
    border-radius: 10px;
    padding: 15px;
  }
}

.Box4 {
  padding: 90px var(--container) 120px;
  position: relative;
}

.itemBox4 {
  padding-top: 120px;
  width: 100%;
  position: relative;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.item4 {
  width: 100%;
  position: relative;
  z-index: 2;
  background: #EFEFEF;    display: flex;
}

.item4 .text4 {
  overflow: hidden;
  padding: 0 60px;
  position: absolute;
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 63px;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s;
}

.item4:hover .text4 {
  height: 65%;
  background: rgba(1, 54, 134, 0.6);
}

.item4 .text4 h1 {
  font-family: PuHuiTi85;
  font-size: 22px;
  line-height: 1.5;
  color: #FFFFFF;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.item4 .text4 h2 {
  font-family: PuHuiTi85;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 20px;
  margin-bottom: 25px;
  display: none;
}

.item4:hover .text4 h2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.item4 .text4 .More4 {
  font-family: PuHuiTi55;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  grid-gap: 20px;
  display: none;
}

.item4:hover .img4 .More4 {
  display: flex;
}

.item4 .img4 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.item4 .img4 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .Box4 {
    padding: 90px var(--container);
  }

  .itemBox4 {
    padding-top: 90px;
  }
}

@media (max-width: 1000px) {
  .itemBox4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .Box4 {
    padding: 60px var(--container);
  }

  .itemBox4 {
    padding-top: 30px;
  }

  .item4 .text4 h1 {
    font-size: 18px;
  }

  .item4 .text4 h2 {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .itemBox4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
