
ul,li {
  list-style-type: none;
}
p{
  margin: 0;
}
.page-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.page-container img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
/* banner */
.page-container .banner-wrap {
  height: var(--dynamic-height, 640px);
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/banner-bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-container .banner-wrap::after {
  content: '';
  position: absolute;
  bottom: -360px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 360px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/banner-bg2.png) no-repeat;
  background-size: 100% 100%;
  background-position: center top;
}

.page-container .banner-wrap .banner-introduce {
  width: 1200px;
  margin: 0 auto;
}

.page-container .banner-wrap .banner-introduce .banner-title {
  width: 732px;
  height: 133px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/banner-title.png) no-repeat;
  background-size: 100% 100%;
}

.page-container .banner-wrap .banner-introduce .banner-desc {
  font-size: 18px;
  color: #4E5969;
  letter-spacing: 0;
  line-height: 32px;
  margin-top: 20px;
}

.page-container .banner-wrap .banner-introduce  .banner-desc-item1 {
  display: flex;
  height: 48px;
  line-height: 48px;
  margin-bottom: 24px;
}
.banner-desc-item1-title {
  width: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070B49;
  font-style: italic;
  font-weight: bold;
  background-image: linear-gradient(90deg, #6bd9f400 0%, #6BD9F4 24%, #8CFECB 88%, #7cffda7a 100%);
}
.banner-desc-item1-title .desc-text {
  width: 125px;
  height: 24px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/desc-text.svg) no-repeat;
  background-size: 100% 100%;
}
.banner-desc-item1-desc {
  width: 488px;
  font-weight: bold;
  font-size: 22px;
  color: #4E5969;
  letter-spacing: 7.2px;
  padding: 0 20px;
  background-image: linear-gradient(90deg, #ffffffb8 0%, #FFFFFF 14%, #ffffff00 100%);
}
.banner-desc-item2 {
  display: flex;
  font-size: 16px;
  line-height: 32px;
  padding: 0 16px;
  margin-top: 25px;
}
.banner-desc-item2 .item-desc {
  padding: 0 18px;
  border-right: 1px solid #4E5969;
}
.banner-desc-item2 .item-desc:last-child {
  border-right: none;
}
/* .page-container .banner-wrap .banner-introduce .banner-btn {
  font-size: 14px;
  width: 96px;
  height: 36px;
  background: #0D6EFF;
  border-radius: 2px;
  margin-top: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  margin-left: 18px;
}

.page-container .banner-wrap .banner-introduce .banner-btn:hover {
  opacity: 0.85;
} */
.button-wrapper {
  position: relative;
  display: inline-block;
  overflow: visible; /* 允许星星溢出漂浮 */
}

.animated-button {
  width: 152px;
  height: 44px;
  border-radius: 18px;
  /* border: 4px solid transparent; */
  
  background:
    /* 每层指定 clip 到 padding-box，避免覆盖边框层 */
    radial-gradient(circle at 43% -15%, #43D0FF 0%, #618ef600 82%) padding-box,
    radial-gradient(circle at -4.8% 100%, #ff4fdec9 0%, #ff4fde00 99%, #ffffff00 99%) padding-box,
    radial-gradient(circle at 27% -29%, #452bffb8 0%, #452bff00 69%) padding-box,
    radial-gradient(circle at 100% 120%, #66FFE8 0%, #66ffe800 187%) padding-box,
    linear-gradient(101deg, #5884F6 4%, #7C9BF9 100%) padding-box,
    linear-gradient(102deg, rgba(124, 155, 249, 0.3) 4%, rgba(106, 202, 255, 0.3) 100%) border-box;
  
  /* background-origin: border-box; */
  background-clip: padding-box, padding-box, padding-box, padding-box, padding-box, border-box;
  
  background-size: 200% 200%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 16px 0 rgba(16, 26, 116, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
  position: relative;
  left: 12px;
  top: 54px;
}
.animated-button.hovered {
  animation: bgMove 3s linear infinite;
}
@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.animated-button::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -4px; 
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 22px; /* 18 + 4 */
  border: 4px solid rgba(88, 132, 246, 0.3);
  opacity: 0;
  box-shadow: 0 0 8px 4px rgba(88, 132, 246, 0.3); /* 光晕效果 */
}

/* hover时光晕扩散淡出 */
.animated-button:hover::before {
  animation: glowExpandFade  1s ease-out  forwards;
}

@keyframes glowExpandFade {
  0% {
    opacity: 0.5;
    box-shadow: 0 0 8px 4px rgba(88, 132, 246, 0.2);
  }
  100% {
    opacity: 0.3;
    /* border: 4px solid rgba(88, 132, 246, 0.4); */
    box-shadow: 0 0 16px 8px rgba(88, 132, 246, 0.3);
  }
}
.animated-button a {
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}


.animated-button .icon-ai {
  display: block;
  width: 23px;
  height: 16px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-ai.png) no-repeat center;
  background-size: 100% 100%;
  margin-right: 10px;
}
.stars {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px; /* 扩大范围：按钮高度 + 下方溢出区域 */
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.star {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  animation: floatStar 3s linear forwards;
}

@keyframes floatStar {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-60px) scale(0.3);
    opacity: 0;
  }
}


/* role */
.page-container .role-container {
  position: relative;
  top: 68px;
  height: 275px;
  z-index: 10;
}
.page-container .role-container-mini {
  display: none;
}
.page-container .role-container.role-container-fixed {
  position: fixed;
  top: 65px;
  left:0;
  width: 100%;
  height:130px;
  z-index: 100;
  background-color: #ffffffcc;
  backdrop-filter: blur(4px);
}
.page-container .role-container.mask {
  background-color: #ffffffcc;
  backdrop-filter: blur(4px);
  height: 290px;
  box-shadow: 0px 0px 20px 0px rgba(5, 80, 237, 0.07);
  transition: all 0.5s ease;
}
.page-container .role-wrap {
  padding-top: 30px;
}

.page-container .role-wrap .role-block {
  width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  transition: height 0.5s ease;
  transform-origin: top center;
}


.page-container .role-container .role-wrap .role-block .role-item {
  width: 285px;
  height: 96px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/role-bg1-big.png) no-repeat center;
  background-size: 100% 100%;
  display: flex;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.5s ease;
  backdrop-filter: blur(4px);
  padding: 34px 0 34px 115px;
}

.page-container .role-container .role-wrap .role-block .role-item.active {
  height: 240px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/role-bg1-big.png) no-repeat center;
  background-size: 100% 100%;
  transition: all 0.5s ease;
  padding: 24px 0 34px 115px;
} 
.page-container .role-container-fixed .role-wrap .role-block .role-item.active {
  height: 240px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/role-bg2-big.png) no-repeat center;
  background-size: 100% 100%;
  box-shadow: 0 8px 20px 0 #5faefb3d, inset 0 0 20px 0 #ffffff33;
  transition: all 0.5s ease;
} 
.page-container .role-container .role-wrap .role-block .role-item.checked {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/role-bg2-big.png) no-repeat center;
  background-size: 100% 100%;
  transition: all 0.5s ease;
}

.page-container .role-wrap .role-block .role-item .person {
  width: 118px;
  height: 124px;
  position: absolute;
  left: -4px;
  bottom: 0;
  pointer-events: none;
}

.page-container .role-wrap .role-block .role-item .right {
  width: 100%;
  font-weight: bolder;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  transition: all 0.5s ease;
  overflow: hidden;
}

.page-container .role-wrap .role-block .role-item .right .role-title {
  color: #1D2129;
  font-weight: bolder;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
}

.page-container .role-wrap .role-block .role-item.active .right {
  height: fit-content;
}
.page-container .role-wrap .role-block .role-item.active .right .role-desc {
  opacity: 1;
  margin-top: 16px;
  transition: all 0.4s ease 0.1s ;
}

.page-container .role-wrap .role-block .role-item .right .role-desc {
  opacity: 0;
  transition: all 0.2s ease ;
}

.page-container .role-wrap .role-block .role-item .right .item-desc-ul li {
  font-size: 12px;
  color: #4E5969;
  letter-spacing: 0;
  line-height: 20px;
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
  font-weight: 400;
}

.page-container .role-wrap .role-block .role-item .right .item-desc-ul li::before {
  content:'';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.page-container .role-wrap .role-block .role-item .right .role-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 28px;
  background: #FFFFFF;
  border-radius: 2px;
  font-size: 12px;
  color: #0D6EFF;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 16px;
  transition: background 0.3s ease;
}

.page-container .role-wrap .role-block .role-item .right .role-guide:hover {
  color: #0D6EFFcc;
}

.page-container .role-wrap .role-block .role-item .right .role-guide i {
  width: 16px;
  height: 16px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-arrow-blue.png) no-repeat;
  background-size: contain;
  margin-left: 4px;
}

.page-container .role-wrap .role-block .role-item .right .role-guide:hover i {
  animation-name: headShake;
  animation-duration: 2000ms;
  animation-timing-function: ease-in-out;
}

.page-container .role-container-fixed .role-wrap .role-block .role-item.active .right .role-title,
.page-container .role-container-fixed .role-wrap .role-block .role-item.checked .right .role-title {
  color: #fff;
}
.page-container .role-container-fixed .role-wrap .role-block .role-item.active .right .item-desc-ul li,
.page-container .role-container-fixed .role-wrap .role-block .role-item.checked .right .item-desc-ul li {
  color: #fff;
}
.page-container .role-container-fixed .role-wrap .role-block .role-item.active .right .item-desc-ul li::before {
  content:'';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-check-white.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

/* section */
.main-box {
  position: relative;
  top: -80px;
}
.main-box-fixed {
  position: relative;
  top: 195px;
}

.section-box {
  width: 1220px;
  margin: 0 auto;
}

.section-header {
  font-weight: bold;
  font-size: 40px;
  color: #1D2129;
  letter-spacing: 0;
  text-align: center;
  line-height: 56px;
}

.section-title {
  font-weight: bold;
  font-size: 28px;
  color: #1D2129;
  letter-spacing: 0;
  text-align: center;
}

 .section-desc {
  font-weight: 400;
  font-size: 16px;
  color: #4E5969;
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  margin-top: 16px;
}

.page-container .service-wrap ul {
  margin: 64px auto 0;
  display: flex;
  justify-content: space-between;
}

.page-container .service-wrap ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 276px;
  height: 236px;
  border: 1px solid #F5F9FF;
  border-radius: 8px;
}

.page-container .service-wrap ul li:nth-child(1) {
  background-image: radial-gradient(circle at 1.2e+02% 26%, #F0FFFF 0%, #f0ffff00 50%), radial-gradient(circle at 8.9% 1.6%, #F0F9FF 0%, #FFFFFF 71%);
}

.page-container .service-wrap ul li:nth-child(2) {
  background-image: radial-gradient(circle at 1e+02% 23%, #f2f0ff80 0%, #f2f0ff00 50%), radial-gradient(circle at 8.9% 0%, #F0FFFF 0%, #FFFFFF 72%);
}

.page-container .service-wrap ul li:nth-child(3) {
  background-image: radial-gradient(circle at 1e+02% 10%, #FFF7F0 0%, #fff7f000 50%), radial-gradient(circle at 8.9% 0%, #F2F0FF 0%, #FFFFFF 72%);
}

.page-container .service-wrap ul li:nth-child(4) {
  background-image: radial-gradient(circle at 1.4e+02% 17%, #FFF0F0 0%, #fff0f000 50%), radial-gradient(circle at 8.9% 0%, #FFF7F0 0%, #FFFFFF 72%);
}

.page-container .service-wrap ul li .name {
  font-size: 22px;
  color: #1D2129;
  letter-spacing: 0;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.page-container .service-wrap ul li .partner-logo {
  width: 152px;
  height: 52px;
  object-fit: contain;
}

.process-wrap {
  margin-top: 160px;
}

.process-wrap .process-ul {
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}

.process-wrap .process-ul .li-item {
  width: 300px;
  height: 152px;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  opacity: 1;

}

.process-wrap .process-ul .li-item .overlay {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 300px;
  height: 152px;
  border: 1px solid #ffffff8f;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  color: #1D2129;
  letter-spacing: 0;
  line-height: 30px;
  padding: 61px 0;
}

.process-wrap .process-ul .li-item::before {
  content: '';
  position: absolute;
  width: 72px;
  height: 32px;
  bottom: 0;
  right: 13px;
}

/* 添加背景颜色 */
.process-wrap .process-ul .li-item:nth-child(1) {
  background-image: linear-gradient(90deg, #62aaff00 3%, #62AAFF 94%);
}
.process-wrap .process-ul .li-item:nth-child(2) {
  background-image: linear-gradient(90deg, #62f1ff00 3%, #62F1FF 94%);
}
.process-wrap .process-ul .li-item:nth-child(3) {
  background-image: linear-gradient(90deg, #ffc56200 3%, #FFC562 94%);
}
.process-wrap .process-ul .li-item:nth-child(1) .overlay {
  background-image: linear-gradient(179deg, #F1F8FF 0%, #ffffff52 100%);
}
.process-wrap .process-ul .li-item:nth-child(2) .overlay {
  background-image: linear-gradient(179deg, #F1FDFF 0%, #ffffff52 100%);
}
.process-wrap .process-ul .li-item:nth-child(3) .overlay {
  background-image: linear-gradient(179deg, #FFF8F1 0%, #ffffff52 100%);
}

.process-wrap .process-ul .li-item:nth-child(1)::before {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-num1.png) no-repeat;
  background-size: contain;

}
.process-wrap .process-ul .li-item:nth-child(2)::before {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-num2.png) no-repeat;
  background-size: contain;

}
.process-wrap .process-ul .li-item:nth-child(3)::before {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-num3.png) no-repeat;
  background-size: contain;

}
.process-wrap .process-ul .li-item:nth-child(4)::before {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-num4.png) no-repeat;
  background-size: contain;

}
.process-wrap .process-ul .li-item:nth-child(5)::before {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-num5.png) no-repeat;
  background-size: contain;

}
.process-wrap .process-ul .li-item:nth-child(6)::before {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-num6.png) no-repeat;
  background-size: contain;

}

/* 箭头样式 */
.process-wrap .process-ul .li-item::after {
  display: inline-block;
  content:  '';
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/section5-arrow.svg) no-repeat;
  background-size: contain;
  width: 88px;
  height: 88px;
  position: absolute; 
  right: -88px;
  top: 32px; 
}

/* 最后一个列表项不显示箭头 */
.process-wrap .process-ul .li-item:last-child::after {
  content: none;
}

.purchase-wrap {
  height: 878px;
  width: 100%;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/purchase-bg.png) no-repeat;
  background-size: cover;
  margin-top: 100px;
  padding: 100px 0;
}
.purchase-wrap .purchase-main {
  margin-top: 48px;
  padding-bottom: 40px;
}
.purchase-wrap .purchase-main .purchase-title {
  width: 212px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.purchase-wrap .purchase-main .purchase-title .purchase-title-item {
  width: 104px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #1D2129;
  letter-spacing: 0;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.purchase-wrap .purchase-main .purchase-title .purchase-title-item.active {
  background: #0D6EFF;
  color: #FFFFFF;
  transition: all 0.5s ease;

}
.purchase-wrap .purchase-main .purchase-title .purchase-title-item:hover {
  background: #62AAFF;
  color: #FFFFFF;
}
.purchase-wrap .purchase-main .purchase-desc {
  font-size: 14px;
  color: #4E5969;
  letter-spacing: 0;
  text-align: center;
  height: 22px;
  line-height: 22px;
  margin-top: 16px;
  position: relative;
}

.purchase-wrap .purchase-main .purchase-desc .purchase-desc-item {
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  text-align: center;
}
.purchase-wrap .purchase-main .purchase-desc .purchase-desc-item.active {
  opacity: 1;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
}
.purchase-wrap .purchase-main .purchase-content-h5 {
  display: none;
}
.purchase-wrap .purchase-main .purchase-content {
  width: 1200px;
  height: 368px;
  margin: 0 auto;
  position: relative;
  top: 40px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/purchase-main-bg.png) no-repeat;
  background-size: cover;
  border-radius: 16px;
  overflow: hidden;
}
.purchase-wrap .purchase-content-item {
  width: 1200px;
  height: 368px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 2s ease, transform 2s ease;
  z-index: 0;
}

.purchase-wrap .purchase-content-item.active {
  display: flex;
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 2s ease, transform 2s ease;
}
.purchase-wrap .purchase-content-item::after,
.purchase-wrap .purchase-content-item .content-left,
.purchase-wrap .purchase-content-item .content-right {
  opacity: 0;
  transform: translateX(-20px);
}

.purchase-wrap .purchase-content-item.active .content-left {
  animation: showItem 1s ease forwards 0.1s;
}
.purchase-wrap .purchase-content-item.active::after {
  animation: showItem 1s ease forwards 0.6s;
}

.purchase-wrap .purchase-content-item.active .content-right {
  animation: showItem 1s ease forwards;
  animation-delay: 1s; 
}

.purchase-wrap .purchase-content-item .content-left,
.purchase-wrap .purchase-content-item .content-right {
  flex: 1;
}
.purchase-wrap .purchase-content-item .content-right .purchase-ul {
  justify-content: flex-end;
}


.purchase-wrap .purchase-content-item::after {
  content: '';
  display: inline-block;
  width: 115px;
  height: 320px;
  background-image: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/purchase-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 27px;
  left: 515px;
}
.purchase-wrap .purchase-content-item .title {
  font-weight: bold;
  font-size: 18px;
  color: #1D2129;
  letter-spacing: 0;
  line-height: 26px;
  text-align: center;
  margin-bottom: 16px;
}
.section2 .purchase-wrap .purchase-content-item .title2 {
  margin-bottom: 76px;
}
.purchase-wrap .purchase-content-item .mode {
  height: 56px;
  background: linear-gradient(to bottom, #68ADFC 0%, #FFFFFF 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: bolder;
  font-size: 40px;
  color: #FFFFFF;
  letter-spacing: 0;
}

.purchase-wrap .purchase-content-item .mode img {
  width: 160px;
  height: 56px;
}
.purchase-wrap .purchase-content-item .purchase-ul {
  display: flex;
  margin-bottom: 28px;
}
.purchase-wrap .purchase-content-item .purchase-ul:last-of-type {
  margin-bottom: 0;
}

.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item {
  width: 204px;
  height: 56px;
  border-radius: 28px;
  padding: 8px 24px;
  color: #0B48A0;
  margin-left: -38px;
}

.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item:first-child {
  margin-left: 0;
}
.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item:nth-child(1) {
  background-image: linear-gradient(90deg, #81D2FF 3%, #81d2ff00 94%);
}
.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item:nth-child(2) {
  background-image: linear-gradient(90deg, #7BE9FF 3%, #7be9ff00 94%);
}
.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item:nth-child(3) {
  background-image: linear-gradient(90deg, #81D2FF 3%, #81d2ff00 94%);
}
.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item .item-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
}.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item .item-desc {
  font-size: 12px;
  transform: scale(0.83); /* 12px * 0.83 ≈ 10px */
  transform-origin: 0 0; 
  letter-spacing: 0;
  line-height: 18px;
  white-space: nowrap;
}
.purchase-wrap .purchase-content-item .purchase-ul .purchase-li-item .item-desc.small {
  font-size: 12px;
  transform: scale(0.75); /* 12px * 0.75 = 9px */
  transform-origin: 0 0; 
  letter-spacing: -1px;
}

.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item {
  width: 156px;
  height: 56px;
  margin-left: -29px;
}
.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item.long {
  width: 296px;
}
.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item.long2 {
  width: 536px;
}
.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item.long:nth-child(2) {
  margin-left: -56px;
}
.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item:nth-child(1),
.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item:nth-child(3) {
  background-image: linear-gradient(90deg, #819FFF 3%, #819fff00 94%);
}
.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item:nth-child(2),
.purchase-wrap .purchase-content-item .purchase-ul2 .purchase-li-item:nth-child(4){
  background-image: linear-gradient(90deg, #BFA2FF 3%, #bfa2ff00 90%);
}

.purchase-wrap .purchase-content-item2 .mode {
  margin-top: 16px;
}
.purchase-wrap .purchase-content-item2 .purchase-ul {
  margin-bottom: 28px;
}
.link-btn {
  background-color: #fff;
  padding: 10px 20px;
  margin: 56px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  border: 1px solid #1717170d;
  border-radius: 4px;
}
.link-btn2 {
  padding: 10px 35px;
}
.link-btn i {
  display: block;
  width: 16px;
  height: 16px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/link-arrow.svg) no-repeat;
  background-size: contain;
  margin-left: 4px;
}
.link-btn:hover {
  opacity: 0.8;
}
.link-btn:hover i {
  animation-name: headShake;
  animation-duration: 2000ms;
  opacity: 0.8;
}
.link {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #0D6EFF !important;
  letter-spacing: 0;
  line-height: 22px;
  cursor: pointer;
  text-decoration: none;
}
.link i {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/arrow-blue.svg) no-repeat;
  background-size: contain;
}
.link:hover i {
  animation-name: headShake;
  animation-duration: 2000ms;
  color: #000000;
}
.link-middle {
  text-align: center;
  padding-left: 0px;
}
.page-container .section1 {
  padding-top: 144px;
}
.page-container .section1 .recommend-wrap {
  height: 1104px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-bg1.png) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.recommend-wrap {
  padding-top: 100px;
}
.recommend-wrap .recommend-main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 72px;
}

.recommend-wrap .recommend-main .recommend-item {
  width: 384px;
  height: 200px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  margin-bottom: 24px;
  margin-right: 24px;
  position: relative;
}
.recommend-wrap .recommend-main .recommend-item:nth-child(3n),
.recommend-wrap .recommend-main .recommend-item:last-of-type {
  margin-right: 0;
}
.recommend-wrap .recommend-main .recommend-item:last-of-type {
  margin-bottom: 0;
}

.recommend-wrap .recommend-main .recommend-item:nth-child(1) {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-item-bg1.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.recommend-wrap .recommend-main .recommend-item:nth-child(2) {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-item-bg2.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.recommend-wrap .recommend-main .recommend-item:nth-child(3) {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-item-bg3.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.recommend-wrap .recommend-main .recommend-item:nth-child(4) {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-item-bg4.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.recommend-wrap .recommend-main .recommend-item:nth-child(7) {
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-item-bg5.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.section1 .recommend-wrap .recommend-main .recommend-item:nth-child(7) {
  background: #fff
}

.recommend-wrap .recommend-main .recommend-item .recommend-icon img {
  width: 36px;
  height: 36px;
  margin-right: 16px;
}
.recommend-wrap .recommend-main .recommend-item .recommend-title {
  font-weight: bold;
  font-size: 22px;
  color: #1D2129;
  letter-spacing: 0;
  line-height: 30px;
}
.recommend-wrap .recommend-main .recommend-item .recommend-desc {
  font-size: 14px;
  color: #4E5969;
  letter-spacing: 0;
  line-height: 22px;
  margin-top: 12px;
  margin-bottom: 34px;
}
.recommend-wrap .recommend-main .recommend-item .link {
  position: absolute;
  bottom: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.recommend-wrap .recommend-main .recommend-item:hover .link {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.page-container .section2 {
  padding-top: 144px;
  position: relative;
}

.page-container .section2 .service-wrap ul li {
  width: 384px;
  height: 236px;
}

.page-container .section2 .recommend-wrap {
  height: 1328px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-bg2.png) no-repeat;
  background-size: cover;
  background-position: bottom;
}

.page-container .section3 {
  padding: 144px 0;
  position: relative;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/recommend-bg3.png) no-repeat;
  background-size: cover;
  background-position: bottom;
}


.page-container .section3 .process-wrap {
  margin-top: 91px;
}
.page-container .section3 .recommend-wrap {
  padding-top: 200px;
}

.page-container .section3 .recommend-wrap .recommend-main {
  justify-content: flex-start;
  padding-left: 10px;
}

.section4-wrap {
  padding-top: 144px;
  padding-bottom: 40px;
}

.section4-wrap .section-box .section4-ul {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;

}

.section4-wrap .section-box .section4-ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 237px;
}

.section4-wrap .section-box .section4-ul li img {
  width: 56px;
  height: 56px;
}

.section4-wrap .section-box .section4-ul li .item-title {
  font-weight: bold;
  font-size: 22px;
  color: #1D2129;
  letter-spacing: 0;
  line-height: 30px;
  margin: 40px auto 16px;
}

.section4-wrap .section-box .section4-ul li .item-desc {
  font-size: 14px;
  color: #4E5969;
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  min-height: 48px;
  margin-bottom: 24px;
}

.section4-wrap .section-box .section4-ul li .more {
  font-size: 14px;
  color: #0D6EFF;
  letter-spacing: 0;
  text-align: center;
  line-height: 22px;
  display: flex;
  align-items: center;
}

.section4-wrap .section-box .section4-ul li .more:hover{
  color: rgba(13, 110, 255, 0.8)
}

.section4-wrap .section-box .section4-ul li .more i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/icon-arrow-blue.png) no-repeat;
  background-size: contain;
  margin-left: 4px;
}

.section4-wrap .section-box .section4-ul li .more:hover i {
  animation-name: headShake;
  animation-duration: 2000ms;
  animation-timing-function: ease-in-out;
}

.section5-wrap {
  padding-top: 24px;
  height: 672px;
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/section5-bg.png) no-repeat;
}
.process-wrap .section5-ul {
  margin-top: 80px;
}
.process-wrap .section5-ul .li-item {
  width: 154px;
  height: 112px;
}

.process-wrap .section5-ul .li-item .overlay {
  width: 154px;
  height: 96px;
  top: -16px;
  left: 0;
  background-image: linear-gradient(179deg, #FFFFFF 0%, rgba(255, 255, 255, 0.32) 100%) !important;
  padding: 33px 0;
}

.process-wrap .section5-ul .li-item::before {
  width: 72px;
  height: 32px;
  bottom: 0;
  right: 13px;
}

.process-wrap .section5-ul .li-item::after {
  display: inline-block;
  content:  '';
  background: url(https://cloudpnrcdn.oss-cn-shanghai.aliyuncs.com/dgwebsite/open-public/docs/images/home/section5-arrow.svg) no-repeat;
  background-size: contain;
  width: 48px;
  height: 48px;
  position: absolute; 
  right: -50px;
  top: 32px; 
}
/* 添加背景颜色 */
.process-wrap .section5-ul .li-item:nth-child(1) {
  background-image: linear-gradient(90deg, rgba(98, 170, 255, 0) 3%, rgba(98, 170, 255, 0.8) 94%);
}
.process-wrap .section5-ul .li-item:nth-child(2) {
  background-image: linear-gradient(90deg, rgba(98, 241, 255, 0) 3%, rgba(98, 241, 255, 0.8) 94%);
}
.process-wrap .section5-ul .li-item:nth-child(3) {
  background-image: linear-gradient(90deg, rgba(98, 113, 255, 0) 3%, rgba(98, 113, 255, 0.8) 94%);
}
.process-wrap .section5-ul .li-item:nth-child(4) {
  background-image: linear-gradient(90deg, rgba(255, 197, 98, 0) 3%, rgba(255, 197, 98, 0.8) 94%);
}
.process-wrap .section5-ul .li-item:nth-child(5) {
  background-image: linear-gradient(90deg, rgba(98, 255, 170, 0) 3%, rgba(98, 255, 170, 0.8) 94%);
}
.process-wrap .section5-ul .li-item:nth-child(6) {
  background-image: linear-gradient(90deg, rgba(197, 98, 255, 0) 3%, rgba(197, 98, 255, 0.8) 94%);
}


/* 动画效果 */
@keyframes showItem {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* .process-wrap .process-ul .li-item:nth-child(1) {
  animation: showItem 0.5s forwards 0.5s;
}
.process-wrap .process-ul .li-item:nth-child(2) {
  animation: showItem 0.5s forwards 1s;
}
.process-wrap .process-ul .li-item:nth-child(3) {
  animation: showItem 0.5s forwards 1.5s;
}
.process-wrap .process-ul .li-item:nth-child(4) {
  animation: showItem 0.5s forwards 2s;
}
.process-wrap .process-ul .li-item:nth-child(5) {
  animation: showItem 0.5s forwards 2.5s;
}
.process-wrap .process-ul .li-item:nth-child(6) {
  animation: showItem 0.5s forwards 3s;
} */


@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}


.animatedBg {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes fadeInBg {
  0% {
    opacity: 0.1;
    width: 0px;
    height: 0px;
  }
  100% {
    opacity: 1;
    width: 286px;
    height: 320px;
  }
}
.fadeInBg {
  -webkit-animation-name: fadeInBg;
  animation-name: fadeInBg;
  animation-timing-function: ease-in-out;
}
@keyframes fadeOutBg {
  0% {
    opacity: 1;
    width: 286px;
    height: 320px;
  }
  100% {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
}
.fadeOutBg {
  -webkit-animation-name: fadeOutBg;
  animation-name: fadeOutBg;
  animation-timing-function: ease-in-out;
  /* animation-duration: 0.5s;
  animation-fill-mode: both; */
}

.footer-fixed {
  margin-top: 275px !important
}