@font-face {
  font-family: "DINAlternate";
  src: url("../../assets/font/DINAlternate-bold.ttf");
}
body * {
  box-sizing: border-box;
  flex-shrink: 0;
}
body {
  font-family:
    PingFangSC-Regular,
    Roboto,
    Helvetica Neue,
    Helvetica,
    Tahoma,
    Arial,
    PingFang SC-Light,
    Microsoft YaHei;
}
input {
  background-color: transparent;
  border: 0;
}
button {
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  outline: none;
  background-color: transparent;
}
button:active {
  opacity: 0.6;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}
.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
.main {
  width: 100vw;
  background-color: rgba(255, 255, 255, 1);
  overflow-x: hidden;
  font-family:
    PingFangSC,
    PingFang SC;
  /* overflow: hidden; */
  position: relative;
}
.floor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 楼层标题 */
.level-title-card {
  display: flex;
  align-items: flex-start;
  width: 1440px;
}

.level-title-card-num {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 600;
  font-size: 64px;
  color: #0e7aff;
  line-height: 64px;
}

.level-title-card-name {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  line-height: 24px;
  position: relative;
  margin-top: 14px;
  margin-left: 14px;
}

.level-title-card-name::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #b9babc;
}
@media screen and (max-width: 1300px) {
  .level-title-card {
    width: 100%;
  }

  .level-title-card {
    width: 100%;
  }
  .level-title-card-num {
    font-size: 32px;
    line-height: 32px;
  }
  .level-title-card-name {
    font-size: 18px;
    margin-left: 6px;
    margin-top: 0px;
  }
  .level-title-card-name::after {
    width: 20px;
    height: 2px;
    bottom: -6px;
  }
}
/* 背景图 */
.bg-style {
  background-image: url("../../caseDetails/image/layout/back2.png");
  background-size: 100% auto;
  background-position: content;
}
@media screen and (max-width: 1300px) {
  .bg-style {
    background-repeat: no-repeat;
    background: linear-gradient(180deg, #f4f6ff 0%, #ffffff 100%);
  }
}

/* 内容头部 */
.main-head {
  background: linear-gradient(#e4eefd 0%, #ffffff 100%);
  padding: 48px 0 87px 0;
  backdrop-filter: blur(4px);
}
.main-head-content {
  width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-head-title-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.main-head-title-content-name {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  line-height: 45px;
}
.main-head-title-content-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-head-content-share {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.main-head-content-subtitle {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #7b8297;
  line-height: 36px;
}
.share-icon-img {
  width: 260px;
  height: auto;
}
.advertising-bg-box {
  width: 1440px;
  height: 310px;
  background-image: url("../image/domeBeifangHuachuang/banner.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: 36px;
}
@media screen and (max-width: 1300px) {
  .main-head {
    padding-top: 61px;
    padding: 80px 16px 40px 16px;
    height: max-content;
  }
  .main-head-content {
    width: 100%;
    overflow: hidden;
  }
  .main-head-title-content {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .main-head-title-content-name {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 4px;
  }
  .main-head-title-content-time {
    font-size: 14px;
    white-space: nowrap;
    color: #7b8297;
  }
  .main-head-content-subtitle {
    flex: 1;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
  }
  .share-icon-img {
    width: 200px;
    height: auto;
  }
  .advertising-bg-box {
    width: 100%;
    height: 100px;
    margin-top: 0px;
  }
}
/* 项目背景 */
.product-introduction {
  padding: 60px 0;
}
.project-info {
  width: 1440px;
  display: flex;
  margin-top: 49px;
  justify-content: space-between;
}
.project-info-item {
  width: 700px;
  background: linear-gradient(134deg, #f9fbff 0%, #edf3fc 100%);
  box-shadow: 0px 6px 12px 0px rgba(20, 29, 39, 0.14);
  border-radius: 4px;
  border: 2px solid;
  border-image: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(226, 233, 250, 1)) 2 2;
  backdrop-filter: blur(4px);
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.project-info-item::after {
  content: "";
  width: 72px;
  height: 86px;
  background: #147dfd;
  opacity: 0.1;
  filter: blur(23px);
  position: absolute;
  top: 0;
  right: 0;
}
.project-info-item-icon {
  width: 53px;
}
.project-info-item-icon2 {
  width: 42px;
  height: 42px;
}
.project-info-item-text {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #36383f;
  line-height: 36px;
  margin-top: 24px;
  text-align: justify;
  text-indent: 2ch;
}
@media screen and (max-width: 1300px) {
  .product-introduction {
    padding: 20px 16px 40px 16px;
  }
  .project-info {
    width: 100%;
    flex-direction: column;
    margin-top: 16px;
    grid-gap: 10px;
  }
  .project-info-item {
    width: 100%;
    height: max-content;
    padding: 16px;
  }
  .project-info-item-icon {
    width: 30px;
    height: 28px;
  }
  .project-info-item-icon2 {
    width: 28px;
    height: 30px;
  }
  .project-info-item-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }
}
/* 楼层2 */
.level2 {
  overflow: hidden;
}
.level2 .level-main {
  padding: 109px 0 0 0;
  width: calc(100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.project-summarize {
  width: 1440px;
  display: flex;
  box-sizing: border-box;
  margin: 50px 0;
  padding-left: 70px;
  justify-content: space-between;
}
.project-summarize-item {
  width: 410px;
  padding: 30px 16px;
  box-sizing: border-box;
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
}

.project-summarize-item-title {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  line-height: 33px;
  position: relative;
}

.project-summarize-item-title::after {
  content: "";
  background: url("../image/layout/layout_title_icon.jpg") no-repeat center;
  background-size: 100% 100%;
  width: 96px;
  height: 6px;
  position: absolute;
  bottom: -12px;
  left: 0;
}

.project-summarize-item-text {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #36383f;
  line-height: 32px;
  margin-top: 32px;
  text-align: justify;
  text-indent: 2ch;
}

@media screen and (max-width: 1300px) {
  .level2 {
    padding: 20px 16px;
    background-image: url("../../caseDetails/image/layout/back2.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .level-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .level2 .level-main {
    padding: 20px 0 0 0;
    height: max-content;
  }
  .project-summarize {
    width: calc(100vw - 32px);
    flex-direction: column;
    margin-top: 16px;
    grid-gap: 16px;
    padding-left: 0;
  }
  .project-summarize-item {
    width: 100%;
  }
  .project-summarize-item-title {
    font-size: 18px;
  }
  .project-summarize-item-title::after {
    width: 66px;
    height: 4px;
    bottom: -6px;
  }
  .project-summarize-item-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }
  .level2 .level-title-card {
    width: calc(100vw - 32px);
  }
}
/* 设计思维 */
.box_7 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section_3 {
  width: 1440px;
  height: 28px;
  padding-left: 70px;
  margin-top: 50px;
}

.image-text_2 {
  width: 235px;
  height: 28px;
}

.box_9 {
  background-color: rgba(14, 122, 255, 1);
  width: 6px;
  height: 20px;
  margin-top: 4px;
}

.text-group_2 {
  width: 220px;
  height: 28px;
  overflow-wrap: break-word;
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-family: PingFangSC-Medium;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  line-height: 28px;
}

.section_4 {
  width: 1440px;
  display: flex;
  padding-left: 70px;
  margin-top: 20px;
  justify-content: space-between;
}

.text-wrapper_4 {
  width: 639px;
  height: 380px;
  background: linear-gradient(180deg, rgba(211, 213, 250, 0.3) 0%, rgba(245, 246, 252, 0.3) 100%);
  border-radius: 16px;
  background-size: 100% 100%;
}

.paragraph_3 {
  width: 564px;
  height: 352px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-weight: normal;
  text-align: justify;
  line-height: 32px;
  margin: 21px 0 0 39px;
}
.section_21 {
  height: 398px;
  border: 3px solid;
  background: linear-gradient(134deg, #fafcff 0%, #f6f8fc 100%);
  box-shadow: 0px 6px 12px 0px rgba(20, 29, 39, 0.08);
  border-image: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(234, 240, 255, 1)) 3 3;
  backdrop-filter: blur(4px);
  width: 680px;
  padding: 16px;
  box-sizing: border-box;
}
.level3-img1 {
  width: 100%;
  height: 100%;
}
.section_7 {
  width: 1440px;
  padding-left: 70px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.section_8 {
  width: 236px;
  height: 304px;
  background: url("../image/domeBeifangHuachuang/leve3_cred_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.text-wrapper_5 {
  background-color: rgba(234, 235, 255, 1);
  height: 60px;
  width: 236px;
}

.text_27 {
  width: 236px;
  height: 60px;
  text-align: center;
  overflow-wrap: break-word;
  color: rgba(14, 122, 255, 1);
  font-size: 20px;
  font-weight: normal;
  white-space: nowrap;
  line-height: 60px;
}

.text_28 {
  width: 186px;
  height: 160px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-family: SourceHanSansCN-Regular;
  font-weight: normal;
  text-align: justify;
  line-height: 32px;
  margin: 12px 0 72px 25px;
}

.section_11 {
  width: 1440px;
  height: 492px;
  margin-top: 50px;
  padding-left: 70px;
  box-sizing: border-box;
}

.section_12 {
  background-color: rgba(239, 244, 254, 1);
  border-radius: 14px 92px 14px 14px;
  width: 631px;
  height: 492px;
  border: 1px solid rgba(180, 188, 204, 1);
  background: url("../image/domeBeifangHuachuang/level3_cred_bg2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.text-wrapper_8 {
  height: 94px;
  width: 630px;
}

.text_33 {
  width: 96px;
  height: 33px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFangSC-Semibold;
  font-weight: 600;
  text-align: justify;
  white-space: nowrap;
  line-height: 33px;
  margin: 35px 0 0 40px;
}

.image-text_4 {
  width: 311px;
  height: 25px;
  margin: 26px 0 0 40px;
}

.box_11 {
  background-color: rgba(14, 122, 255, 1);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-top: 9px;
}

.text-group_4 {
  width: 288px;
  height: 25px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-weight: normal;
  text-align: justify;
  white-space: nowrap;
  line-height: 25px;
}

.section_14 {
  background-color: rgba(239, 244, 254, 1);
  border-radius: 14px 92px 14px 14px;
  width: 631px;
  height: 492px;
  border: 1px solid rgba(180, 188, 204, 1);
}

.text-wrapper_9 {
  background-image: url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/3029148c3fc6486185ceb4bd462b91a8_mergeImage.png);
  border-radius: 14px 92px 0px 0px;
  height: 94px;
  width: 630px;
}

.text_34 {
  width: 96px;
  height: 33px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: PingFangSC-Semibold;
  font-weight: 600;
  text-align: justify;
  white-space: nowrap;
  line-height: 33px;
  margin: 35px 0 0 40px;
}

.section_15 {
  width: 1440px;
  padding-left: 70px;
  margin-top: 76px;
}

.block_4 {
  width: 1361px;
  background: linear-gradient(134deg, #fafcff 0%, #f6f8fc 100%);
  box-shadow: 0px 6px 12px 0px rgba(20, 29, 39, 0.08);
  border: 3px solid;
  border-image: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(234, 240, 255, 1)) 3 3;
  backdrop-filter: blur(4px);
  padding: 16px;
}

.group_18 {
  border-radius: 8px 0px 0px 8px;
  background-image: url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/c7da296ffae0445491ab5de0d1f1e7d6_mergeImage.png);
  width: 612px;
  height: 511px;
  /* border: 1px solid rgba(151, 151, 151, 1); */
}

.group_19 {
  background-color: rgba(239, 244, 254, 1);
  border-radius: 0px 8px 8px 0px;
  height: 511px;
  width: 692px;
}

.text-wrapper_10 {
  width: 168px;
  height: 33px;
  margin: 35px 0 0 59px;
}

.text_35 {
  width: 168px;
  height: 33px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 24px;
  font-family: PingFangSC-Semibold;
  font-weight: 600;
  text-align: justify;
  white-space: nowrap;
  line-height: 33px;
}

.box_19 {
  width: 574px;
  height: 99px;
  margin: 41px 0 0 59px;
}

.image-text_18 {
  width: 248px;
  height: 77px;
}

.label_1 {
  width: 24px;
  height: 22px;
  margin-top: 4px;
}

.text-group_18 {
  width: 212px;
  height: 77px;
}

.text_36 {
  width: 72px;
  height: 25px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-family: PingFangSC-Semibold;
  font-weight: 600;
  text-align: justify;
  white-space: nowrap;
  line-height: 25px;
}

.text_37 {
  width: 212px;
  height: 44px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 16px;
  font-weight: normal;
  text-align: justify;
  line-height: 22px;
  margin-top: 8px;
}
.section_17 {
  width: 1440px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  padding-left: 70px;
}

.section_18 {
}
.box_22 {
  background: linear-gradient(134deg, #fafcff 0%, #f6f8fc 100%);
  box-shadow: 0px 6px 12px 0px rgba(20, 29, 39, 0.08);
  border: 3px solid;
  border-image: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(234, 240, 255, 1)) 3 3;
  backdrop-filter: blur(4px);
  width: 436px;
  height: 354px;
  padding: 16px;
}
.text-wrapper_11 {
  width: 436px;
  height: 245px;
  background: linear-gradient(180deg, rgba(211, 213, 250, 0.3) 0%, rgba(245, 246, 252, 0.3) 100%);
  border-radius: 16px;
  padding: 21px 40px 0 40px;
  overflow-wrap: break-word;
  font-weight: 600;
  text-align: justify;
  line-height: 32px;
  margin-top: 20px;
}
.paragraph_4 {
  width: 364px;
  height: 192px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 32px;
}
.paragraph_5 {
  width: 364px;
  height: 192px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  line-height: 32px;
}
.image-wrapper_5 {
  border-radius: 2px;
  background-image: url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/fc79efa2151f4791b7c737f48bb5fa90_mergeImage.png);
  height: 80px;
  border: 0.7090909090909093px solid rgba(151, 151, 151, 1);
  width: 80px;
}

.image_13 {
  width: 80px;
  height: 80px;
}

.text-group_30 {
  width: 70px;
  height: 20px;
  overflow-wrap: break-word;
  color: rgba(170, 174, 186, 1);
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 20px;
  margin: 12px 0 0 5px;
}
@media screen and (max-width: 1300px) {
  .box_7 {
    padding: 16px;
  }
  .label_1 {
    width: 22px;
    height: max-content;
  }
  .text_28 {
    font-size: 16px;
  }
  .section_3 {
    width: 100%;
    padding-left: 0;
  }
  .section_4 {
    width: 100%;
    flex-direction: column;
    padding-left: 0;
  }
  .paragraph_3 {
    width: 100%;
    height: max-content;
    margin: 0;
    padding: 16px;
    font-size: 16px;
  }
  .text-wrapper_4 {
    width: 100%;
    height: max-content;
  }
  .section_21 {
    width: 100%;
    height: max-content;
  }
  .section_7 {
    flex-direction: column;
    width: 100%;
    height: max-content;
    padding-left: 0;
    grid-gap: 20px;
    box-sizing: border-box;
    align-items: center;
  }
  .section_11 {
    width: 100%;
    height: max-content;
    flex-direction: column;
    padding-left: 0;
  }
  .section_12 {
    width: 100%;
    height: max-content;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  .text-wrapper_8 {
    width: 100%;
    height: 84px;
  }
  .text_33 {
    height: 100%;
    line-height: 84px;
    margin: 0;
    text-indent: 40px;
  }
  .image-text_4 {
    width: 100%;
    height: max-content;
    margin: 16px 0 0 20px;
    justify-content: flex-start !important;
    margin-bottom: 8px;
    align-items: center;
  }
  .text-group_4 {
    width: calc(100% - 50px);
    height: max-content;
    margin-left: 10px;
    white-space: inherit;
    line-height: 1;
    font-size: 14px;
  }
  .box_11 {
    margin-top: 0;
  }
  .section_14 {
    width: 100%;
    height: max-content;
    padding-bottom: 12px;
  }
  .text-wrapper_9 {
    width: 100%;
    height: 84px;
  }
  .text_34 {
    height: 100%;
    line-height: 84px;
    margin: 0;
    text-indent: 40px;
  }
  .section_15 {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .block_4 {
    width: 100%;
    flex-direction: column;
  }
  .group_18 {
    width: 100%;
    height: 255px;
    background-size: 100%;
    /* height: auto; */
  }
  .group_19 {
    width: 100%;
    height: max-content;
  }
  .box_19 {
    width: 100%;
    flex-direction: column;
    height: max-content;
    margin: 10px 0 0 10px;
  }
  .image-text_18 {
    display: flex;
    height: max-content;
    flex-direction: row;
    margin-top: 20px;
  }
  .text-group_18 {
    width: max-content;
    height: max-content;
    margin-left: 10px;
  }
  .text_37 {
    width: 250px;
    height: max-content;
  }
  .section_17 {
    width: 100%;
    flex-direction: column;
    padding-left: 0;
    height: max-content;
  }
  .box_22 {
    width: 100%;
    height: max-content;
  }
  .text-wrapper_11 {
    width: 100%;
    height: max-content;
  }
  .section_18 {
    margin-bottom: 20px;
  }
  .paragraph_5 {
    font-size: 16px;
  }
}
/* 
设计亮点 







*/
.box_31 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 70px;
}

.text-wrapper_17 {
  width: 1370px;
  overflow-wrap: break-word;
  text-align: justify;
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(211, 213, 250, 0.3) 0%, rgba(245, 246, 252, 0.3) 100%);
  border-radius: 16px;
  padding: 20px 40px 20px 40px;
  box-sizing: border-box;
}

.paragraph_10 {
  width: 1224px;
  height: 64px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 32px;
}

.text_56 {
  width: 1224px;
  height: 64px;
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  /* font-weight: 400; */
  text-align: left;
  line-height: 32px;
}

.group_30 {
  width: 1370px;
  background: linear-gradient(134deg, #fafcff 0%, #f6f8fc 100%);
  box-shadow: 0px 6px 12px 0px rgba(20, 29, 39, 0.08);
  border: 3px solid;
  border-image: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(234, 240, 255, 1)) 3 3;
  backdrop-filter: blur(4px);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.block_8 {
  width: 648px;
  height: 519px;
}
.image_14 {
  width: 77px;
  height: 128px;
}

.image_15 {
  width: 528px;
  height: 419px;
}

.image_16 {
  width: 465px;
  height: 160px;
}

.image_17 {
  width: 804px;
  height: 115px;
}

.group_37 {
  width: 100%;
  height: auto;
}

.group_38 {
  width: 1370px;
  height: max-content;
  background: linear-gradient(180deg, rgba(211, 213, 250, 0.3) 0%, rgba(245, 246, 252, 0.3) 100%);
  border-radius: 16px;
  padding: 21px 40px 20px 40px;
  box-sizing: border-box;
  margin-top: 40px;
}

.paragraph_14 {
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 32px;
}

.paragraph_15 {
  overflow-wrap: break-word;
  color: rgba(54, 56, 63, 1);
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  line-height: 32px;
}

.image_18 {
  width: 1082px;
  height: 410px;
  margin-left: 40px;
}

.group_41 {
  position: absolute;
  left: 328px;
  top: 2002px;
  width: 1354px;
  height: 245px;
}

.section_24 {
  width: 1354px;
  height: 245px;
  background: url(https://lanhu-oss-2537-2.lanhuapp.com/SketchPnge63ef29e3b84da528204fc6ccd33bb0b83fe00d206965ff9cdf52f8795f203c5)
    100% no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 1300px) {
  .box_31 {
    width: 100%;
    padding: 16px;
  }
  .text-wrapper_17 {
    width: 100%;
    height: max-content;
  }
  .group_30 {
    width: 100%;
    flex-direction: column;
  }
  .block_8,
  .image_15,
  .image_16,
  .image_17 {
    width: 100%;
    height: auto;
  }
  .image_14 {
    transform: rotate(90deg);
    width: 38px;
    height: 64px;
  }
  .image_17 {
    margin-top: 10px;
  }
  .group_38 {
    width: 100%;
    height: max-content;
  }
  .image_18 {
    width: 100%;
    height: auto;
  }
  .text_56 {
    font-size: 16px;
  }
  .paragraph_15 {
    font-size: 16px;
  }
}
/* 其他案例 */
.other-cases-box {
  height: 766px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.other-cases-title {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  line-height: 45px;
  position: relative;
  margin-top: 94px;
}

.other-cases-title::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0px;
  width: 108px;
  height: 5px;
  background: #0d7bff;
}

.other-cases-title::before {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 0px;
  width: 13px;
  height: 5px;
  background: #0d7bff;
}

.case-content {
  width: 1440px;
  display: grid;
  grid-template-columns: repeat(4, 330px);
  grid-gap: 40px;
  margin-top: 70px;
}

.case-item-box {
  width: 330px;
}

.case-time {
  font-family:
    PingFangSC,
    PingFang SC;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}

.year {
  font-family: DINAlternate, DINAlternate;
  font-weight: bold;
  font-size: 36px;
  color: #000000;
  line-height: 1;
}

.month {
  font-family: DINAlternate, DINAlternate;
  font-weight: bold;
  font-size: 16px;
  color: #b3b3b3;
  margin-left: 8px;
}

.case-item-img {
  width: 330px;
  height: 278px;
}

.title-info {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #b3b3b3;
  line-height: 18px;
  margin-top: 18px;
  overflow: hidden;
  /* 隐藏溢出的内容 */
  white-space: nowrap;
  /* 防止文本换行 */
  text-overflow: ellipsis;
  /* 超出容器时用省略号表示 */
}

.title-name {
  font-family:
    PingFangSC,
    PingFang SC;
  font-weight: 400;
  font-size: 26px;
  color: #080808;
  margin-top: 14px;
  height: 80px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制显示的行数为2 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 超出部分显示为省略号 */
}
.app {
  display: none !important;
}
.pc {
  display: block;
}
@media screen and (max-width: 1300px) {
  /*  */
  .other-cases-box {
    padding: 40px 16px;
    height: max-content;
  }
  .other-cases-title {
    margin-top: 0;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .other-cases-title::after {
    width: 54px;
    bottom: -9px;
    height: 2px;
  }
  .other-cases-title::before {
    width: 12px;
    bottom: -9px;
    height: 2px;
  }
  .case-content {
    width: 100%;
    grid-template-columns: repeat(2, 44.5vw);
    grid-gap: 26px 10px;
    margin-top: 20px;
  }
  .pushpin {
    display: none;
  }

  .case-item-box {
    width: 100%;
  }
  .case-time {
    margin-bottom: 10px;
  }
  .year {
    font-size: 20px;
  }
  .month {
    font-size: 12px;
  }
  .case-item-img {
    width: 100%;
    height: auto;
    min-height: 146px;
    display: block;
  }
  .title-info {
    font-size: 12px;
    line-height: 12px;
    margin-top: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .title-name {
    margin-top: 8px;
    font-size: 15px;
    line-height: 21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
  }
  /* 分享 */
  .social-share .social-share-icon {
    width: 18px !important;
    height: 18px !important;
  }
}
