body {
  background: #f2f2f2;
}

.model1 {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 50px 0 0;
  color: #003771;
  background: #f2f2f2;
}

.model1 .wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 82%;
}

.model1 .title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 14px;
}

.model1 .title .line {
  width: 32px;
  height: 1px;
  background: #fb903b;
}

.model1 .title p {
  text-align: center;
  color: #003771;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.model1 .desc {
  display: flex;
  justify-content: center;
  width: 84%;
  margin-top: 26px;
}

.model1 .desc p {
  text-align: center;
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 300;
  font-size: 18px;
  line-height: 37px;
}

.model2 {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
  background: #f2f2f2;
}

.model2 .wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 92%;
  padding: 18px 6%;
  background: #ffffff;
  border-radius: 8px;
}

.model2 .item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  flex: 1 1 0;
  flex-direction: column;
  min-width: 0;
  padding: 0 1%;
  color: #003771;
  cursor: pointer;
  text-decoration: none;
}

.model2 .item-top {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  padding: 9px 0;
  border: 1px solid transparent;
  width: 152px;
  height: 152px;
  border-radius: 12px;
}

.model2 .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.model2 .item .img svg {
}

.model2 .item .title {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.model2 .item .title p {
  color: #003771;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
}

.model2 .item-bottom {
  display: none;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.model2 .item-bottom svg {
  width: 18%;
  height: auto;
}

.model2 .item.active .item-top,
.model2 .item:hover .item-top {
  border-color: #fb903b;
}
.model2 .item.active .img svg path{
  fill: #000000;
}
.model2 .item.active .title p{
  color: #000000;
}
.model2 .item.active .item-bottom {
  display: flex;
}

.model3 {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0 50px;
  background: #f2f2f2;
}

.model3 .wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 82%;
  gap: 32px 2.5%;
}

.model3 .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 23.1%;
  flex-direction: column;
  min-width: 0;
  padding: 6px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(25, 42, 61, 0.12);
  background-image: url("../images/pros/1.png");
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.model3 .item .icon {
  position: absolute;
  top: 6%;
  right: 6%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 33px;
  background: #ffffff1a;    
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.model3 .item .icon svg{
  transition: 0.5s;
}
.model3 .item:hover .icon svg{ 
  transform: rotate(-45deg);
}
.model3 .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12% 5% 8%;
}

.model3 .item .img img {
  width: 82%;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transition: 0.5s;
}
.model3 .item:hover .img img {
  transform: scale(1.05);
}
.model3 .item .title {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 7px 5%;
}

.model3 .item .title p {
  color: #003771;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
}

.model3 .item.no-data {
  grid-column: 1 / -1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  background: #f6f8fb;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
  padding: 0 0 72px;
  background: #f2f2f2;
}

.page .pre-pageBtn,
.page .next-pageBtn,
.page .num {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003771;
  font-size: 18px;
  font-weight: 700;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

.page .pre-pageBtn,
.page .next-pageBtn {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 0.6px solid #e5e7eb;
  box-sizing: border-box;
  background: #fb903b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page .pre-pageBtn {
  background: #ffc18f;
}

.page .next-pageBtn {
  background: #fb903b;
}

.page .page-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page .pages {
  display: flex;
  align-items: center;
  gap: 30px;
}

.page .num {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 0.6px solid #e5e7eb;
  box-sizing: border-box;
  background: #ffffff;
  text-align: center;
  color: #4a5565;
  font-family: "Noto Sans SC";
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

.page .num-active {
  background: #003771;
  box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  color: #ffffff;
}

.page .ellipsis {
  display: flex;
  align-items: center;
  color: #8a9099;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .model2 .wrap,
  .model1 .wrap,
  .model3 .wrap {
    width: 90%;
  }

  .model3 .item {
    flex-basis: 31.6%;
  }
}

@media (max-width: 1024px) {
  .model2 .wrap {
    flex-wrap: wrap;
  }

  .model2 .item {
    flex: 0 0 31%;
  }
}

@media (max-width: 768px) {

  .model1 {
    padding-top: 28px;
  }

  .model1 .wrap,
  .model2 .wrap,
  .model3 .wrap {
    width: 92%;
  }

  .model1 .title p {
    font-size: 24px;
    line-height: 32px;
  }

  .model1 .desc {
    width: 100%;
    margin-top: 14px;
  }

  .model1 .desc p {
    font-size: 14px;
    line-height: 1.8;
  }

  .model2 {
    padding: 28px 0 34px;
  }

  .model2 .wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 3%;
    gap: 12px 2%;
  }

  .model2 .item {
    flex-basis: 31%;
    padding: 0;
  }

  .model2 .item .title p {
    font-size: 13px;
  }

  .model3 .wrap {
    gap: 18px 3%;
  }

  .model3 .item {
    flex-basis: 48.5%;
  }

  .model3 .item .title p {
    font-size: 13px;
  }

  .page {
    gap: 10px;
    padding-bottom: 42px;
  }

  .page .pre-pageBtn,
  .page .next-pageBtn {
    width: 10%;
    padding-top: 10%;
  }

  .page .pages {
    gap: 8px;
  }

  .page .num {
    width: 8%;
    padding-top: 8%;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .model2 .wrap {
    gap: 8px;
  }

  .model2 .item {
    flex: 0 0 48%;
  }

  .model2 .item-top {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .model2 .item .img svg {
    width: 46%;
    height: auto;
  }
}

@media (max-width: 414px) {
  .model1 .title p {
    font-size: 22px;
    line-height: 30px;
  }

  .model1 .desc p {
    font-size: 13px;
  }

  .model3 .item {
    flex-basis: 100%;
  }
}

.model2 .wrap.swiper {
  display: block;
  overflow: hidden;
}

.model2 .wrap.swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.model2 .wrap.swiper .item {
  align-self: stretch;
  height: auto;
}

@media (max-width: 960px) {
  .model2 {
    padding: 36px 0 44px;
  }

  .model2 .wrap,
  .model2 .wrap.swiper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 86%;
    gap: 20px 8%;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
  }

  .model2 .wrap.swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px 8%;
    width: 100% !important;
    transform: none !important;
    transition: none !important;
  }

  .model2 .item,
  .model2 .wrap.swiper .item,
  .model2 .wrap.swiper .swiper-slide {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex: 0 0 46%;
    flex-direction: row;
    justify-content: center;
    width: 46% !important;
    min-height: 76px;
    margin-right: 0 !important;
    padding: 12px 5%;
    color: #53769a;
    background: #ffffff;
    border: 2px solid #9bb8d7;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .model2 .item-top {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    height: 100%;
    gap: 10%;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .model2 .item .img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26%;
    width: auto;
  }

  .model2 .item .img svg {
    width: 100%;
    height: auto;
  }

  .model2 .item .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 0;
    width: auto;
    margin-top: 0;
  }

  .model2 .item .title p {
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    color: #003771;
    font-family: "Alibaba PuHuiTi";
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .model2 .item-bottom {
    display: none;
  }

  .model2 .item.active,
  .model2 .item:hover {
    color: #fb903b;
    background: #fff0e3;
    border-color: #fb903b;
  }

  .model2 .item.active .item-top,
  .model2 .item:hover .item-top {
    border-color: transparent;
  }

  .model2 .item:hover .img svg {
    animation: horizontalMove 1.4s ease-in-out infinite;
  }

  .model2 .item.active .title p,
  .model2 .item:hover .title p {
    color: #fb903b;
    font-weight: 700;
  }

  .model2 .item.active .item-bottom {
    display: none;
  }
}

@media (max-width: 640px) {
  .model2 {
    padding: 30px 0 42px;
  }

  .model2 .wrap,
  .model2 .wrap.swiper {
    width: 86%;
    gap: 18px 8%;
  }

  .model2 .wrap.swiper .swiper-wrapper {
    gap: 18px 8%;
  }

  .model2 .item,
  .model2 .wrap.swiper .item,
  .model2 .wrap.swiper .swiper-slide {
    flex-basis: 46%;
    width: 46% !important;
    min-height: 58px;
    padding: 10px 4%;
    border-width: 1px;
    border-radius: 16px;
  }

  .model2 .item-top {
    min-height: 38px;
    height: 100%;
    aspect-ratio: auto;
  }

  .model2 .item .title p {
    font-size: 10px;
    line-height: 14px;
  }
}

@media (max-width: 450px) {
  .model2 {
    padding: 28px 0 38px;
  }

  .model2 .wrap,
  .model2 .wrap.swiper {
    gap: 14px;
  }

  .model2 .wrap.swiper .swiper-wrapper {
    gap: 14px;
  }

  .model2 .item,
  .model2 .wrap.swiper .item,
  .model2 .wrap.swiper .swiper-slide {
    flex-basis: 46%;
    width: 46% !important;
    min-height: 54px;
    gap: 8%;
    padding: 9px 4%;
    border-radius: 14px;
  }
}
