body {
  margin: 0;
}
p,
ul,
li,
h3 {
  margin: 0;
  padding: 0;
}
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  z-index: 11;
}
.header .nav {
  position: relative;
  width: 1080px;
  height: 80px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header .nav .logo {
  width: 184px;
  height: 44px;
  background: url(assets/images/logo.svg) no-repeat;
  background-size: cover;
  cursor: pointer;
}
.header .nav .text-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.header .nav .text {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.header .nav .text a {
  text-decoration: none;
}
.header .nav .text .item {
  position: relative;
  padding: 0 16px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.85);
  box-sizing: border-box;
  transition: all 0.3s linear;
  cursor: pointer;
}
.header .nav .text .item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 36px;
  height: 4px;
  background: url(assets/images/logo-on.svg);
  display: none;
}
.header .nav .text .item.on {
  color: #014099;
}
.header .nav .text .item.on::before {
  display: block;
}
.header .nav .text .item .business {
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 280px;
  padding: 24px;
  background-color: #F4FAFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  z-index: -1;
  display: none;
}
.header .nav .text .item .business a {
  display: block;
  padding: 8px ;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  transition: all 0.3s linear;
  cursor: pointer;
}
.header .nav .text .item .business a:hover {
  color: #014099;
}
.header .nav .text .item:hover {
  opacity: 0.85;
  color: #014099;
}
.header .nav .text .businessItem {
  position: relative;
}
.header .nav .text .businessItem:hover .business {
  display: block;
}
.header .nav .enter {
  position: relative;
  width: 118px;
  height: 70px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s ease-in;
  transform-origin: center;
  animation: enter 10s infinite;
}
.header .nav .enter::before {
  content: "";
  display: inline-block;
  width: 118px;
  height: 70px;
  background: url(assets/images/platform1.svg) no-repeat;
  transform-origin: center;
  animation: swing 3s ease-in-out infinite;
}
.header .nav .enter::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 28px;
  display: inline-block;
  width: 28px;
  height: 36px;
  background: url(assets/images/platform1.png) no-repeat;
}
@keyframes swing {
  0% {
    transform: rotate(-2deg);
  }
  25% {
    transform: rotate(2.5deg);
  }
  50% {
    transform: rotate(-1.5deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
.header .nav .menu {
  width: 40px;
  height: 40px;
  background: url(assets/images/menu.svg) no-repeat;
  display: none;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 70%;
  height: 100vh;
  background: #E0ECF8;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.sidebar .leftNav {
  position: relative;
  padding-top: 24px;
}
.sidebar .leftNav a {
  display: block;
  text-decoration: none;
}
.sidebar .leftNav .txt {
  padding: 16px;
  color: #014099;
  font-size: 16px;
}
.sidebar .leftNav .txt a {
  padding-left: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  color: #014099;
  text-decoration: none;
}
.sidebar .leftNav .txt a:first-child {
  margin-top: 8px;
}
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 50;
}
#menuToggle {
  display: none;
}
#menuToggle:checked ~ .sidebar {
  transform: translateX(0);
}
/* 页面右移 */
#menuToggle:checked ~ .home-page {
  transform: translateX(70%);
}
/* 显示遮罩 */
#menuToggle:checked ~ .mask {
  opacity: 1;
  visibility: visible;
}
.footer {
  position: relative;
  padding-top: 40px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  height: 400px;
  background: #00061E;
  box-sizing: border-box;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: url(assets/images/footer-bg.jpg) no-repeat center bottom;
  background-size: cover;
}
.footer .box {
  position: relative;
  padding-bottom: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1080px;
  z-index: 12;
}
.footer .box .logo {
  width: 184px;
  height: 44px;
  background: url(assets/images/logo-white.svg) no-repeat;
  background-size: cover;
}
.footer .box .text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
}
.footer .box .text .item .txt {
  margin-bottom: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.footer .box .text .item ul li {
  padding-top: 6px;
  padding-bottom: 6px;
  list-style: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.home-page {
  position: relative;
}
.home-page .homepage-container {
  padding-bottom: 100px;
  transition: transform 0.3s ease;
  z-index: 2;
  box-sizing: border-box;
}
.home-page .homepage-container .carousel {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  /* 指示器样式 */
}
.home-page .homepage-container .carousel .carousel-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-page .homepage-container .carousel .carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.home-page .homepage-container .carousel .carousel-slide {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
}
.home-page .homepage-container .carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-page .homepage-container .carousel .carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.home-page .homepage-container .carousel .carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
}
.home-page .homepage-container .carousel .carousel-dots .dot.active {
  background: #ffffff;
  transform: scale(1.2);
}
.home-page .homepage-container .profile-block {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  padding-top: 60px;
  padding-bottom: 80px;
  background: url(assets/images/info-bg.jpg) no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
}
.home-page .homepage-container .profile-block .company-profile {
  position: relative;
  width: 1080px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 40px 40px 40px 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  box-sizing: border-box;
}
.home-page .homepage-container .profile-block .company-profile .number-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 160px;
  flex-shrink: 0;
}
.home-page .homepage-container .profile-block .company-profile .number-box .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.home-page .homepage-container .profile-block .company-profile .number-box .box .number {
  font-size: 30px;
  color: #014099;
}
.home-page .homepage-container .profile-block .company-profile .number-box .box .text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
}
.home-page .homepage-container .profile-block .company-profile .company-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 100px;
}
.home-page .homepage-container .profile-block .company-profile .company-info .info p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  text-indent: 32px;
  line-height: 32px;
}
.home-page .homepage-container .profile-block .company-profile .company-info .details-button {
  position: relative;
  margin-top: 16px;
  width: 180px;
  font-size: 14px;
  color: #014099;
  padding: 8px 0;
  text-align: center;
  border-radius: 25px;
  border: 1px solid #014099;
  cursor: pointer;
  transition: all 0.3s;
}
.home-page .homepage-container .profile-block .company-profile .company-info .details-button:hover {
  padding-right: 24px;
  background-color: #014099;
  color: #fff;
}
.home-page .homepage-container .profile-block .company-profile .company-info .details-button:hover::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background: url(assets/images/arrow-white.svg) no-repeat;
}
.home-page .homepage-container .profile-block .company-profile .company-info a {
  text-decoration: none;
}
.home-page .homepage-container .business-block {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.home-page .homepage-container .business-block .business {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-page .homepage-container .business-block .business .title {
  width: 280px;
  height: 38px;
  background: url(assets/images/homepage-title1.svg);
}
.home-page .homepage-container .business-block .business .block {
  margin-top: 32px;
  width: 1080px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 16px;
}
.home-page .homepage-container .business-block .business .block .box {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 2 * 16px) / 3);
  /* 每行3列，减去gap */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.home-page .homepage-container .business-block .business .block .box .img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.home-page .homepage-container .business-block .business .block .box .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.home-page .homepage-container .business-block .business .block .box .text {
  padding: 12px 20px;
  border: 1px solid #E4E9F0;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.home-page .homepage-container .business-block .business .block .box .text .txt {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
}
.home-page .homepage-container .business-block .business .block .box .text .info {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}
.home-page .homepage-container .business-block .business .block .box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.home-page .homepage-container .business-block .business .block .box:hover .img {
  scale: 1.2;
}
.home-page .homepage-container .business-block .business .block .box:hover .text .txt {
  color: #014099;
}
.home-page .homepage-container .business-block .business .block .box:first-child {
  flex: 0 0 calc((100% - 2 * 16px) / 3 * 2 + 16px);
  /* 两个宽度 + 一个gap */
}
.home-page .homepage-container .development-history {
  display: flex;
  justify-content: center;
  width: 100%;
  background: url(assets/images/history-bg.jpg) no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
}
.home-page .homepage-container .development-history .history {
  display: flex;
  align-items: flex-start;
  width: 1080px;
}
.home-page .homepage-container .development-history .history .title-box {
  width: 400px;
  height: 100%;
  flex-shrink: 0;
  border-right: 1px solid #C7D5DC;
}
.home-page .homepage-container .development-history .history .title-box .title {
  margin-top: 80px;
  width: 340px;
  height: 120px;
  background: url(assets/images/history-title.svg) no-repeat;
  box-sizing: border-box;
}
.home-page .homepage-container .development-history .history .block {
  padding-left: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex: 1;
  box-sizing: border-box;
}
.home-page .homepage-container .development-history .history .block .box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.home-page .homepage-container .development-history .history .block .box .year {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s ease;
}
.home-page .homepage-container .development-history .history .block .box .year::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 0;
  width: 4px;
  height: 40px;
  background-color: #014099;
  display: none;
}
.home-page .homepage-container .development-history .history .block .box .text {
  margin-left: 24px;
  padding-right: 16px;
  padding-top: 3px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.home-page .homepage-container .development-history .history .block .box .text .txt {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
}
.home-page .homepage-container .development-history .history .block .box .text .info {
  margin-top: 2px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}
.home-page .homepage-container .development-history .history .block .box:hover {
  transform: translateY(-8px);
  /* 轻微上浮 */
}
.home-page .homepage-container .development-history .history .block .box:hover .year {
  font-size: 28px;
  color: #014099;
}
.home-page .homepage-container .development-history .history .block .box:hover .year::before {
  display: block;
}
.home-page .homepage-container .development-history .history .block .box:hover .text {
  float: left;
  margin-left: 8px;
}
.home-page .homepage-container .development-history .history .block .box:hover .text .txt {
  font-weight: bold;
}
.home-page .homepage-container .certificate-block {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 40px;
  box-sizing: border-box;
  background-color: #fff;
}
.home-page .homepage-container .certificate-block .title {
  width: 280px;
  height: 38px;
  background: url(assets/images/honor-title.svg);
}
.home-page .homepage-container .certificate-block .cert-track {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1080px;
  height: 450px;
  margin-top: 16px;
}
.home-page .homepage-container .certificate-block .cert-item {
  position: relative;
  flex-shrink: 0;
  margin-left: -60px;
  transform-origin: center center;
  transition: transform 0.45s ease, opacity 0.45s ease;
  cursor: pointer;
}
.home-page .homepage-container .certificate-block .cert-item:first-child {
  margin-left: 0;
}
.home-page .homepage-container .certificate-block .cert-item img {
  width: 220px;
  display: block;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.home-page .homepage-container .certificate-block .cert-item.layer-0 {
  z-index: 10;
  transform: scale(1.35);
  opacity: 1;
}
.home-page .homepage-container .certificate-block .cert-item.layer-1 {
  z-index: 8;
  transform: scale(1.05);
  opacity: 1;
}
.home-page .homepage-container .certificate-block .cert-item.layer-2 {
  z-index: 6;
  transform: scale(0.85);
  opacity: 0.88;
}
.home-page .homepage-container .certificate-block .cert-item.layer-3 {
  z-index: 4;
  transform: scale(0.7);
  opacity: 0.55;
}
.home-page .homepage-container .certificate-block .cert-badges {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 160px;
  margin-top: 30px;
  opacity: 1;
  transform: translateY(0);
  animation: fade-in 0.3s ease-in;
}
.home-page .homepage-container .certificate-block .cert-badges .badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-page .homepage-container .certificate-block .cert-badges .badge .badge-number {
  font-size: 36px;
  font-weight: bold;
  color: #D6A600;
}
.home-page .homepage-container .certificate-block .cert-badges .badge .badge-number .badge-unit {
  font-size: 18px;
  font-weight: normal;
}
.home-page .homepage-container .certificate-block .cert-badges .badge .badge-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.home-page .homepage-container .certificate-block .cert-badges .badge::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 70px;
  background: url(assets/images/honor-left.svg);
}
.home-page .homepage-container .certificate-block .cert-badges .badge::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 70px;
  background: url(assets/images/honor-right.svg);
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
}
.home-page .homepage-container .qualifications {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: none;
}
.home-page .homepage-container .qualifications .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1080px;
  z-index: 10;
}
.home-page .homepage-container .qualifications .content .title {
  width: 280px;
  height: 38px;
  background: url(assets/images/honor-title.svg);
}
.home-page .homepage-container .qualifications .content .box {
  position: relative;
  margin-top: 40px;
  padding-left: 700px;
  width: 380px;
  height: 400px;
  overflow: hidden;
  z-index: 3;
}
.home-page .homepage-container .qualifications .content .box .list {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
}
.home-page .homepage-container .qualifications .content .box .list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: url(assets/images/honor-item-icon.svg) no-repeat;
}
.home-page .homepage-container .cooperate-block {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  background: url(assets/images/cooperate-bg.jpg) no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
}
.home-page .homepage-container .cooperate-block .title-box {
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: -520px;
  width: 250px;
}
.home-page .homepage-container .cooperate-block .title-box .title {
  width: 158px;
  height: 38px;
  background: url(assets/images/cooperate-title.svg) no-repeat;
  background-size: cover;
}
.home-page .homepage-container .cooperate-block .title-box .info {
  margin-top: 24px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
}
.home-page .homepage-container .cooperate-block .title-box .number {
  margin-top: 80px;
  width: 156px;
  height: 68px;
  background: url(assets/images/cooperate-number.svg) no-repeat;
  background-size: cover;
}
.home-page .homepage-container .cooperate-block .title-box .text {
  margin-top: 24px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.85);
}
.home-page .homepage-container .cooperate-block .unit {
  width: 100%;
  height: 580px;
  background: url(assets/images/cooperate-unit.svg) no-repeat center center;
  background-size: cover;
}
.home-page .homepage-container .dynamic-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-page .homepage-container .dynamic-block .title {
  width: 280px;
  height: 38px;
  background: url(assets/images/dynamic-title.svg);
}
.home-page .homepage-container .dynamic-block .list {
  margin-top: 24px;
  width: 1080px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home-page .homepage-container .dynamic-block .list a {
  text-decoration: none;
}
.home-page .homepage-container .dynamic-block .list .box {
  display: block;
  padding: 40px 32px;
  width: calc(100% / 3);
  box-sizing: border-box;
  transition: all 1s ease;
  cursor: pointer;
}
.home-page .homepage-container .dynamic-block .list .box .date {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
  transition: all 1s ease;
}
.home-page .homepage-container .dynamic-block .list .box .date .day {
  font-size: 50px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1;
  transition: all 1s ease;
}
.home-page .homepage-container .dynamic-block .list .box .date .month {
  padding-bottom: 6px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1;
  box-sizing: border-box;
  transition: all 1s ease;
}
.home-page .homepage-container .dynamic-block .list .box .text {
  margin-top: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  height: 44px;
  overflow: hidden;
  transition: all 1s ease;
}
.home-page .homepage-container .dynamic-block .list .box .img {
  margin-top: 16px;
  width: 276px;
  height: 170px;
  overflow: hidden;
}
.home-page .homepage-container .dynamic-block .list .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .homepage-container .dynamic-block .list .box .info {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  height: 40px;
  overflow: hidden;
  transition: all 1s ease;
}
.home-page .homepage-container .dynamic-block .list .box .button {
  position: relative;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  transition: all 1s ease;
}
.home-page .homepage-container .dynamic-block .list .box .button::after {
  content: "";
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background: url(assets/images/arrow-black.svg) no-repeat;
}
.home-page .homepage-container .dynamic-block .list .box:hover {
  background-color: #014099;
}
.home-page .homepage-container .dynamic-block .list .box:hover .date .day {
  color: #fff;
}
.home-page .homepage-container .dynamic-block .list .box:hover .date .month {
  color: #fff;
}
.home-page .homepage-container .dynamic-block .list .box:hover .text {
  color: #fff;
}
.home-page .homepage-container .dynamic-block .list .box:hover .info {
  color: #fff;
}
.home-page .homepage-container .dynamic-block .list .box:hover .button {
  color: #fff;
}
.home-page .homepage-container .dynamic-block .list .box:hover .button::after {
  background: url(assets/images/arrow-white.svg) no-repeat;
}
.home-page .homepage-container .sider {
  position: fixed;
  bottom: 120px;
  right: 0;
}
.home-page .homepage-container .sider .platform {
  display: inline-block;
  width: 128px;
  height: 160px;
}
.home-page .homepage-container .sider .platform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .homepage-container .sider .back-top {
  position: relative;
  margin-top: 24px;
  padding-top: 28px;
  width: 140px;
  text-align: center;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.home-page .homepage-container .sider .back-top::before {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: url(assets/images/top.svg);
}
.home-page .homepage-container .sider .back-top.show {
  opacity: 1;
  visibility: visible;
}
.home-page .homepage-container .sider .back-top:hover {
  opacity: 0.85;
}
.about-page {
  position: relative;
}
.about-page .aboutpage-container {
  padding-bottom: 100px;
  box-sizing: border-box;
}
.about-page .aboutpage-container .banner {
  position: relative;
  width: 100%;
  height: 300px;
  background: url(assets/images/about-banner.jpg) no-repeat center center;
  background-size: cover;
}
.about-page .aboutpage-container .banner .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  margin-left: -500px;
  width: 158px;
  height: 38px;
  background: url(assets/images/about-title.svg) no-repeat;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-page .aboutpage-container .introduction {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.about-page .aboutpage-container .introduction::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 794px;
  height: 274px;
  background: url(assets/images/about-intr-bg.png) no-repeat;
  background-size: cover;
}
.about-page .aboutpage-container .introduction .content {
  padding-top: 80px;
  width: 1080px;
}
.about-page .aboutpage-container .introduction .content .left {
  position: relative;
  width: 540px;
  height: 164px;
  background: url(assets/images/about-intr-left.svg) no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
.about-page .aboutpage-container .introduction .content .left::before {
  content: "";
  position: absolute;
  left: 370px;
  top: -40px;
  width: 9px;
  height: 508px;
  background: url(assets/images/about-intr-right.svg) no-repeat;
  background-size: cover;
}
.about-page .aboutpage-container .introduction .content .text {
  margin-top: 32px;
  padding-left: 420px;
}
.about-page .aboutpage-container .introduction .content .text p {
  text-indent: 32px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 28px;
}
.about-page .aboutpage-container .development-history {
  display: flex;
  justify-content: center;
  width: 100%;
  background: url(assets/images/history-bg.jpg) no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
}
.about-page .aboutpage-container .development-history .history {
  display: flex;
  align-items: flex-start;
  width: 1080px;
}
.about-page .aboutpage-container .development-history .history .title-box {
  width: 400px;
  height: 100%;
  flex-shrink: 0;
  border-right: 1px solid #C7D5DC;
}
.about-page .aboutpage-container .development-history .history .title-box .title {
  margin-top: 80px;
  font-size: 40px;
  font-weight: bold;
  color: #014099;
}
.about-page .aboutpage-container .development-history .history .title-box .info {
  margin-top: 12px;
  font-size: 30px;
  color: #014099;
}
.about-page .aboutpage-container .development-history .history .block {
  padding-left: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex: 1;
  box-sizing: border-box;
}
.about-page .aboutpage-container .development-history .history .block .box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.about-page .aboutpage-container .development-history .history .block .box .year {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s ease;
}
.about-page .aboutpage-container .development-history .history .block .box .year::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 0;
  width: 4px;
  height: 40px;
  background-color: #014099;
  display: none;
}
.about-page .aboutpage-container .development-history .history .block .box .text {
  margin-left: 24px;
  padding-right: 16px;
  padding-top: 3px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.about-page .aboutpage-container .development-history .history .block .box .text .txt {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
}
.about-page .aboutpage-container .development-history .history .block .box .text .info {
  margin-top: 2px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}
.about-page .aboutpage-container .development-history .history .block .box:hover {
  transform: translateY(-8px);
  /* 轻微上浮 */
}
.about-page .aboutpage-container .development-history .history .block .box:hover .year {
  font-size: 28px;
  color: #014099;
}
.about-page .aboutpage-container .development-history .history .block .box:hover .year::before {
  display: block;
}
.about-page .aboutpage-container .development-history .history .block .box:hover .text {
  float: left;
  margin-left: 8px;
}
.about-page .aboutpage-container .development-history .history .block .box:hover .text .txt {
  font-weight: bold;
}
.about-page .aboutpage-container .qualifications {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
.about-page .aboutpage-container .qualifications::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1800px;
  height: 800px;
  background: url(assets/images/honor-bg.png) no-repeat center center;
  background-size: cover;
}
.about-page .aboutpage-container .qualifications .content {
  width: 1080px;
}
.about-page .aboutpage-container .qualifications .content .title-box {
  position: relative;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.about-page .aboutpage-container .qualifications .content .title-box .title {
  font-size: 40px;
  font-weight: bold;
  color: #014099;
}
.about-page .aboutpage-container .qualifications .content .title-box .info {
  margin-top: 12px;
  font-size: 30px;
  color: #014099;
}
.about-page .aboutpage-container .qualifications .content .box {
  position: relative;
  margin-top: 40px;
  padding-left: 700px;
  width: 380px;
  height: 400px;
  overflow: hidden;
  z-index: 3;
}
.about-page .aboutpage-container .qualifications .content .box .list {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
}
.about-page .aboutpage-container .qualifications .content .box .list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: url(assets/images/honor-item-icon.svg) no-repeat;
}
.contact-page {
  position: relative;
}
.contact-page .contactpage-container {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.contact-page .contactpage-container::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1400px;
  height: 400px;
  background: linear-gradient(205deg, #EBF3FF 0%, #fff 50%);
}
.contact-page .contactpage-container::after {
  content: "";
  position: absolute;
  left: -70px;
  top: -150px;
  width: 1190px;
  height: 400px;
  background: url(assets/images/contact-bg.svg) no-repeat;
  background-size: contain;
}
.contact-page .contactpage-container .title {
  position: relative;
  width: 1080px;
  height: 180px;
  z-index: 3;
}
.contact-page .contactpage-container .title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 158px;
  height: 38px;
  background: url(assets/images/contact-title.svg) no-repeat;
}
.contact-page .contactpage-container .title::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 50%;
  margin-right: -400px;
  width: 144px;
  height: 164px;
  background: url(assets/images/contact-title-icon.svg) no-repeat;
}
.contact-page .contactpage-container .content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 50px 80px;
  margin-top: 8px;
  width: 1080px;
  height: 400px;
  background: url(assets/images/contact-bg2.png) no-repeat;
  background-size: cover;
  box-sizing: border-box;
  z-index: 4;
}
.contact-page .contactpage-container .content .left {
  padding-top: 32px;
  box-sizing: border-box;
}
.contact-page .contactpage-container .content .left .name {
  font-size: 24px;
  font-weight: bold;
  color: #014099;
}
.contact-page .contactpage-container .content .left .box {
  margin-top: 40px;
}
.contact-page .contactpage-container .content .left .list span {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
}
.contact-page .contactpage-container .content .left .list .txt {
  color: rgba(0, 0, 0, 0.55);
}
.contact-page .contactpage-container .content .left .list .text {
  color: rgba(0, 0, 0, 0.85);
}
.contact-page .contactpage-container .content .right {
  padding: 32px 60px;
  width: 320px;
  height: 300px;
  background-color: #014099;
  color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}
.dynamic-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.dynamic-page .dynamicpage-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.dynamic-page .dynamicpage-container .banner {
  position: relative;
  width: 100%;
  height: 300px;
  background: url(assets/images/dynamicpage-banner.jpg) no-repeat center center;
  background-size: cover;
}
.dynamic-page .dynamicpage-container .banner .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  margin-left: -500px;
  width: 158px;
  height: 38px;
  background: url(assets/images/dynamicpage-title.svg) no-repeat;
}
.dynamic-page .dynamicpage-container .content {
  width: 1080px;
  padding-bottom: 100px;
  box-sizing: border-box;
}
.dynamic-page .dynamicpage-container .content a {
  text-decoration: none;
}
.dynamic-page .dynamicpage-container .content .list {
  display: block;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dynamic-page .dynamicpage-container .content .list .img {
  width: 240px;
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dynamic-page .dynamicpage-container .content .list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dynamic-page .dynamicpage-container .content .list .box {
  flex: 1;
  padding-top: 16px;
  height: 150px;
  box-sizing: border-box;
  overflow: hidden;
}
.dynamic-page .dynamicpage-container .content .list .box .title {
  font-size: 16px;
  color: #014099;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dynamic-page .dynamicpage-container .content .list .box .info {
  margin-top: 8px;
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.65);
  height: 48px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dynamic-page .dynamicpage-container .content .list .box .button {
  position: relative;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s ease;
}
.dynamic-page .dynamicpage-container .content .list .box .button::after {
  content: "";
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background: url(assets/images/arrow-black.svg) no-repeat;
}
.dynamic-page .dynamicpage-container .content .list .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 80px;
  width: 68px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.dynamic-page .dynamicpage-container .content .list .date .day {
  font-size: 34px;
  color: #014099;
  font-weight: 500;
  line-height: 1;
}
.dynamic-page .dynamicpage-container .content .list .date .month {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1;
}
.dynamic-page .dynamicpage-container .content .list:hover .img {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.12);
}
.dynamic-page .dynamicpage-container .content .list:hover .box .button {
  color: #014099;
}
.dynamic-page .dynamicpage-container .content .list:hover .box .button::before {
  background: url(assets/images/arrow-blue.svg) no-repeat;
}
.business-edu-page {
  position: relative;
}
.business-edu-page .business-edu-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.business-edu-page .business-edu-container .banner {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(assets/images/business-edu-bg.jpg) no-repeat;
  background-size: cover;
}
.business-edu-page .business-edu-container .banner .text {
  width: 1080px;
}
.business-edu-page .business-edu-container .banner .text .title {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.business-edu-page .business-edu-container .banner .text .info {
  width: 700px;
  text-indent: 32px;
  padding: 24px;
  margin-top: 32px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 28px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(194, 208, 255, 0.6);
  box-sizing: border-box;
}
.business-edu-page .business-edu-container .training {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.business-edu-page .business-edu-container .training::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 600px;
  height: 400px;
  background: url(assets/images/business-edu-bg1.png) no-repeat;
  background-size: cover;
}
.business-edu-page .business-edu-container .training::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 600px;
  height: 400px;
  background: url(assets/images/business-edu-bg2.png) no-repeat;
}
.business-edu-page .business-edu-container .training .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1080px;
  z-index: 2;
}
.business-edu-page .business-edu-container .training .content .text .title {
  text-align: center;
  font-size: 28px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.business-edu-page .business-edu-container .training .content .text .info {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.business-edu-page .business-edu-container .training .content .box {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 860px;
  gap: 28px;
}
.business-edu-page .business-edu-container .training .content .box .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  width: calc((100% / 3) - 20px);
  height: 100px;
  font-size: 16px;
  color: #36354C;
  border-radius: 6px;
  text-align: center;
  box-sizing: border-box;
}
.business-edu-page .business-edu-container .training .content .box .item.blue {
  background: radial-gradient(circle at 15% 80%, rgba(153, 193, 255, 0.35), transparent 68%), radial-gradient(circle at 85% 20%, rgba(180, 210, 255, 0.3), transparent 60%), Linear-gradient(135deg, #f8fbff 0%, #eef3ff 50%, #f6f9ff 100%);
}
.business-edu-page .business-edu-container .training .content .box .item.pink {
  background: radial-gradient(circle at 20% 85%, rgba(255, 220, 226, 0.35), transparent 60%), radial-gradient(circle at 80% 15%, rgba(255, 209, 220, 0.3), transparent 60%), linear-gradient(135deg, #fff8f8 0%, #fff4fe 50%, #fff8fb 100%);
}
.business-edu-page .business-edu-container .training .content .box .item.green {
  background: radial-gradient(circle at 20% 85%, rgba(220, 255, 250, 0.35), transparent 60%), radial-gradient(circle at 80% 15%, rgba(209, 246, 255, 0.3), transparent 60%), linear-gradient(135deg, #f8feff 0%, #f4fcff 50%, #fff8fb 100%);
}
.business-edu-page .business-edu-container .block {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  background: url(assets/images/business-edu-bg3.png) no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
.business-edu-page .business-edu-container .block .box {
  width: 860px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.business-edu-page .business-edu-container .block .box .img {
  width: 404px;
  height: 300px;
}
.business-edu-page .business-edu-container .block .box .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.business-edu-page .business-edu-container .block .box .title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.business-edu-page .business-edu-container .block .box .title .text {
  font-size: 28px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.business-edu-page .business-edu-container .block .box .title .info {
  margin-top: 8px;
  width: 320px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 28px;
  text-indent: 32px;
}
.business-software-page {
  position: relative;
}
.business-software-page .business-software-container {
  position: relative;
  padding-bottom: 100px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(assets/images/business-software-bg1.jpg) no-repeat center center;
  background-size: cover;
}
.business-software-page .business-software-container .text {
  position: relative;
  margin-top: 100px;
  width: 1080px;
  z-index: 2;
}
.business-software-page .business-software-container .text .title {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.business-software-page .business-software-container .text .info {
  width: 700px;
  text-indent: 32px;
  padding: 24px;
  margin-top: 32px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 28px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(194, 208, 255, 0.6);
  box-sizing: border-box;
}
.business-software-page .business-software-container .content {
  position: relative;
  margin-top: 40px;
  width: 1080px;
  z-index: 3;
}
.business-software-page .business-software-container .content .top {
  position: relative;
  width: 1080px;
  height: 400px;
  background: url(assets/images/business-software-bg2.png) no-repeat;
  background-size: cover;
  box-shadow: 0 4px 20px rgba(194, 208, 255, 0.6);
  box-sizing: border-box;
  z-index: 4;
}
.business-software-page .business-software-container .content .top .txt {
  padding-left: 100px;
  padding-top: 80px;
}
.business-software-page .business-software-container .content .top .txt .title {
  color: #014099;
  font-size: 34px;
  font-weight: 500;
}
.business-software-page .business-software-container .content .top .txt .info {
  padding-left: 28px;
  margin-top: 24px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 34px;
  font-weight: 500;
}
.business-software-page .business-software-container .content .top::before {
  content: "";
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 424px;
  height: 250px;
  background: url(assets/images/business-software-bg3.png) no-repeat;
  background-size: cover;
}
.business-software-page .business-software-container .content .bottom {
  position: relative;
  margin-top: -100px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  z-index: 5;
}
.business-software-page .business-software-container .content .bottom .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 4);
  padding: 32px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(194, 208, 255, 0.6);
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.business-software-page .business-software-container .content .bottom .box .item {
  font-size: 22px;
  color: #014099;
  font-weight: 500;
  margin-bottom: 16px;
}
.business-software-page .business-software-container .content .bottom .box ul li {
  padding-top: 4px;
  padding-bottom: 4px;
  color: rgba(0, 0, 0, 0.85);
}
.business-software-page .business-software-container .content .bottom .box:hover {
  transform: translateY(-8px);
}
.business-resource-page {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: #C8F4E3;
}
.business-resource-page .resourcepage-container {
  flex: 1;
  position: relative;
  padding-bottom: 100px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(assets/images/business-resource-bg1.jpg) no-repeat top center;
  background-size: cover;
  overflow: hidden;
}
.business-resource-page .resourcepage-container .text {
  position: relative;
  margin-top: 100px;
  width: 1080px;
  z-index: 2;
}
.business-resource-page .resourcepage-container .text .title {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.business-resource-page .resourcepage-container .text .info {
  width: 700px;
  text-indent: 32px;
  padding: 24px;
  margin-top: 32px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 28px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(194, 208, 255, 0.6);
  box-sizing: border-box;
}
.campus-page {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: #C8F4E3;
}
.campus-page .campuspage-container {
  position: relative;
  flex: 1;
  padding-bottom: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(assets/images/business-campus-bg1.jpg) no-repeat top center;
  background-size: cover;
  overflow: hidden;
}
.campus-page .campuspage-container .text {
  position: relative;
  margin-top: 100px;
  width: 1080px;
  z-index: 2;
}
.campus-page .campuspage-container .text .title {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.campus-page .campuspage-container .text .info {
  width: 700px;
  text-indent: 32px;
  padding: 24px;
  margin-top: 32px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 28px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(194, 208, 255, 0.6);
  box-sizing: border-box;
}
.health-page {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: #EFFFFE;
}
.health-page .healthpage-container {
  position: relative;
  flex: 1;
  padding-bottom: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(assets/images/business-health-bg1.jpg) no-repeat top center;
  overflow: hidden;
  background-size: cover;
}
.health-page .healthpage-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100px;
  width: 630px;
  height: 370px;
  background: url(assets/images/business-health-bg2.png) no-repeat;
  background-size: cover;
}
.health-page .healthpage-container .text {
  position: relative;
  margin-top: 100px;
  width: 1080px;
  z-index: 2;
}
.health-page .healthpage-container .text .title {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.health-page .healthpage-container .text .info {
  width: 700px;
  padding: 24px;
  margin-top: 32px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(194, 208, 255, 0.6);
  box-sizing: border-box;
}
.health-page .healthpage-container .text .info h3 {
  margin-bottom: 4px;
}
.health-page .healthpage-container .text .info p {
  line-height: 32px;
  text-indent: 32px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
}
.details-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
.details-page .detailspage-container {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 100px;
  width: 1080px;
  box-sizing: border-box;
  overflow: hidden;
}
.details-page .detailspage-container .title {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.85);
}
.details-page .detailspage-container .date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
}
.details-page .detailspage-container .content {
  margin-top: 24px;
}
.details-page .detailspage-container .content p {
  text-indent: 32px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 28px;
}
.details-page .detailspage-container .content .img {
  margin-top: 8px;
  width: auto;
  height: auto;
}
.details-page .detailspage-container .content .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1280px) and (min-width: 960px) {
  .footer .box {
    width: 960px;
  }
  .home-page .homepage-container .carousel {
    height: 400px;
  }
  .home-page .homepage-container .profile-block .company-profile {
    width: 960px;
  }
  .home-page .homepage-container .business-block .business .block {
    width: 960px;
  }
  .home-page .homepage-container .development-history .history {
    width: 960px;
  }
  .home-page .homepage-container .certificate-block .cert-track {
    width: 960px;
  }
  .home-page .homepage-container .certificate-block .cert-item {
    margin-left: -100px;
  }
  .home-page .homepage-container .cooperate-block .title-box {
    margin-left: -440px;
  }
  .home-page .homepage-container .dynamic-block .list {
    width: 960px;
  }
  .about-page .aboutpage-container .banner {
    height: 200px;
  }
  .about-page .aboutpage-container .banner .title {
    margin-left: -480px;
  }
  .about-page .aboutpage-container .introduction .content {
    width: 960px;
  }
  .about-page .aboutpage-container .development-history .history {
    width: 960px;
  }
  .about-page .aboutpage-container .qualifications::before {
    left: -200px;
  }
  .about-page .aboutpage-container .qualifications .content {
    width: 960px;
  }
  .about-page .aboutpage-container .qualifications .content .box {
    padding-left: 600px;
    width: 340px;
  }
  .contact-page .contactpage-container .content {
    width: 960px;
  }
  .dynamic-page .dynamicpage-container .banner {
    height: 200px;
  }
  .dynamic-page .dynamicpage-container .banner .title {
    margin-left: -480px;
  }
  .dynamic-page .dynamicpage-container .content {
    width: 960px;
  }
  .business-edu-page .business-edu-container .banner .text {
    width: 960px;
  }
  .business-edu-page .business-edu-container .training .content {
    width: 960px;
  }
  .business-software-page .business-software-container .text {
    width: 960px;
  }
  .business-software-page .business-software-container .content {
    width: 960px;
  }
  .business-resource-page .resourcepage-container .text {
    width: 960px;
  }
  .campus-page .campuspage-container .text {
    width: 960px;
  }
  .health-page .healthpage-container .text {
    width: 960px;
  }
  .details-page .detailspage-container {
    width: 960px;
  }
  .details-page .detailspage-container .content .img {
    width: auto;
  }
}
@media (max-width: 959px) {
  .header {
    position: relative;
  }
  .header .nav {
    width: 100%;
    height: 50px;
  }
  .header .nav .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 31px;
  }
  .header .nav .text-box {
    display: none;
  }
  .header .nav .text {
    display: none;
  }
  .header .nav .enter {
    display: none;
  }
  .header .nav .menu {
    display: block;
  }
  .footer {
    display: none;
  }
  .home-page {
    width: 100%;
  }
  .home-page .homepage-container {
    padding-bottom: 0;
  }
  .home-page .homepage-container .carousel {
    height: 160px;
  }
  .home-page .homepage-container .profile-block {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
  }
  .home-page .homepage-container .profile-block .company-profile {
    padding: 16px;
    flex-direction: column-reverse;
    width: 100%;
  }
  .home-page .homepage-container .profile-block .company-profile .company-info {
    margin-left: 0;
  }
  .home-page .homepage-container .profile-block .company-profile .number-box {
    margin-top: 24px;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .home-page .homepage-container .profile-block .company-profile .number-box .box {
    margin-bottom: 0;
  }
  .home-page .homepage-container .business-block {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
  }
  .home-page .homepage-container .business-block .business .block {
    width: 100%;
    flex-direction: column;
  }
  .home-page .homepage-container .business-block .business .block .box {
    flex: 1;
  }
  .home-page .homepage-container .business-block .business .block .box:first-child {
    flex: 1;
  }
  .home-page .homepage-container .development-history {
    padding-left: 16px;
    padding-right: 16px;
  }
  .home-page .homepage-container .development-history .history {
    width: 100%;
    flex-direction: column;
  }
  .home-page .homepage-container .development-history .history .title-box {
    width: 100%;
    height: auto;
  }
  .home-page .homepage-container .development-history .history .block {
    margin-top: 0;
    padding-left: 0;
    width: 100%;
  }
  .home-page .homepage-container .certificate-block {
    display: none;
  }
  .home-page .homepage-container .qualifications {
    display: block;
    margin-top: 80px;
  }
  .home-page .homepage-container .qualifications::before {
    background: none;
    background-color: #fff;
  }
  .home-page .homepage-container .qualifications .content {
    width: 100%;
  }
  .home-page .homepage-container .qualifications .content .box {
    width: 100%;
    margin-top: 24px;
    padding-left: 0;
    height: unset;
  }
  .home-page .homepage-container .cooperate-block {
    margin-top: 40px;
    flex-direction: column;
  }
  .home-page .homepage-container .cooperate-block .title-box {
    position: unset;
    width: 100%;
    padding-left: 16px;
    margin-left: 0;
    box-sizing: border-box;
  }
  .home-page .homepage-container .cooperate-block .title-box .number {
    margin-top: 40px;
    width: 93px;
    height: 40px;
  }
  .home-page .homepage-container .cooperate-block .title-box .text {
    margin-top: 16px;
    font-size: 14px;
  }
  .home-page .homepage-container .cooperate-block .unit {
    margin-top: 24px;
    height: 300px;
  }
  .home-page .homepage-container .dynamic-block .list {
    width: 100%;
    flex-direction: column;
  }
  .home-page .homepage-container .dynamic-block .list .box {
    padding: 24px 32px;
    width: 100%;
  }
  .home-page .homepage-container .dynamic-block .list .box .img {
    width: 100%;
  }
  .home-page .homepage-container .sider .platform {
    width: 78px;
    height: 100px;
  }
  .home-page .homepage-container .sider .back-top {
    display: none;
  }
  .about-page .aboutpage-container .banner {
    height: 140px;
  }
  .about-page .aboutpage-container .banner .title {
    margin-left: 0;
    transform: translate(-50%, -50%);
  }
  .about-page .aboutpage-container .introduction {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .about-page .aboutpage-container .introduction .content {
    width: 100%;
  }
  .about-page .aboutpage-container .introduction .content .left {
    width: 100%;
    background-size: contain;
  }
  .about-page .aboutpage-container .introduction .content .text {
    margin-top: 0;
    padding-left: 0;
    width: 100%;
  }
  .about-page .aboutpage-container .development-history {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .about-page .aboutpage-container .development-history .history {
    flex-direction: column;
    width: 100%;
  }
  .about-page .aboutpage-container .development-history .history .title-box {
    width: 100%;
    height: unset;
  }
  .about-page .aboutpage-container .development-history .history .block {
    padding-left: 0;
  }
  .about-page .aboutpage-container .qualifications {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .about-page .aboutpage-container .qualifications::before {
    display: none;
  }
  .about-page .aboutpage-container .qualifications .content {
    width: 100%;
  }
  .about-page .aboutpage-container .qualifications .content .box {
    margin-top: 24px;
    width: 100%;
    padding-left: 0;
    height: unset;
  }
  .contact-page .contactpage-container .title {
    width: 100%;
    height: 140px;
  }
  .contact-page .contactpage-container .title::after {
    margin-right: -240px;
  }
  .contact-page .contactpage-container .content {
    flex-direction: column;
    padding: 24px;
    width: 100%;
    height: 100%;
  }
  .contact-page .contactpage-container .content .left {
    padding-top: 0;
  }
  .contact-page .contactpage-container .content .left .box {
    margin-top: 16px;
  }
  .contact-page .contactpage-container .content .right {
    margin-top: 16px;
    padding-left: 32px;
    width: 100%;
  }
  .dynamic-page .dynamicpage-container .banner {
    height: 140px;
  }
  .dynamic-page .dynamicpage-container .banner .title {
    margin-left: 0;
    transform: translate(-50%, -50%);
  }
  .dynamic-page .dynamicpage-container .content {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .dynamic-page .dynamicpage-container .content .list {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 8px;
  }
  .dynamic-page .dynamicpage-container .content .list .img {
    width: 100%;
  }
  .dynamic-page .dynamicpage-container .content .list .box {
    width: 100%;
  }
  .dynamic-page .dynamicpage-container .content .list .box .button {
    margin-top: 8px;
  }
  .dynamic-page .dynamicpage-container .content .list .date {
    margin-left: 0;
    width: 100%;
  }
  .business-edu-page .business-edu-container .banner {
    height: unset;
    padding: 32px 16px;
    box-sizing: border-box;
  }
  .business-edu-page .business-edu-container .banner .text {
    width: 100%;
  }
  .business-edu-page .business-edu-container .banner .text .title {
    font-size: 28px;
    text-align: center;
  }
  .business-edu-page .business-edu-container .banner .text .info {
    margin-top: 16px;
    width: 100%;
  }
  .business-edu-page .business-edu-container .training {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .business-edu-page .business-edu-container .training::before {
    width: 100%;
    height: 100%;
  }
  .business-edu-page .business-edu-container .training .content {
    width: 100%;
    box-sizing: border-box;
  }
  .business-edu-page .business-edu-container .training .content .box {
    width: 100%;
    gap: 16px;
  }
  .business-edu-page .business-edu-container .training .content .box .item {
    padding: 16px;
    width: calc((100% / 2) - 8px);
  }
  .business-edu-page .business-edu-container .block .box {
    flex-direction: column;
  }
  .business-edu-page .business-edu-container .block .box .img {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .business-edu-page .business-edu-container .block .box .title {
    padding-left: 24px;
    padding-right: 24px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
  }
  .business-edu-page .business-edu-container .block .box .title .text {
    width: 100%;
    text-align: center;
  }
  .business-edu-page .business-edu-container .block .box .title .info {
    width: 100%;
  }
  .business-software-page .business-software-container {
    padding-left: 16px;
    padding-right: 16px;
    height: 100%;
    box-sizing: border-box;
  }
  .business-software-page .business-software-container .text {
    width: 100%;
  }
  .business-software-page .business-software-container .text .title {
    text-align: center;
    font-size: 28px;
  }
  .business-software-page .business-software-container .text .info {
    margin-top: 16px;
    width: 100%;
  }
  .business-software-page .business-software-container .content {
    width: 100%;
    height: 100%;
  }
  .business-software-page .business-software-container .content .top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    padding-bottom: 100px;
    box-sizing: border-box;
  }
  .business-software-page .business-software-container .content .top .txt {
    padding-left: 0;
    padding-top: 0;
  }
  .business-software-page .business-software-container .content .top .txt .title {
    font-size: 28px;
  }
  .business-software-page .business-software-container .content .top .txt .info {
    font-size: 28px;
  }
  .business-software-page .business-software-container .content .top::before {
    display: none;
  }
  .business-software-page .business-software-container .content .bottom {
    flex-wrap: wrap;
  }
  .business-software-page .business-software-container .content .bottom .box {
    padding: 16px;
    width: calc((100% / 2) - 12px);
  }
  .business-resource-page {
    height: 100vh;
  }
  .business-resource-page .resourcepage-container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .business-resource-page .resourcepage-container .text {
    width: 100%;
  }
  .business-resource-page .resourcepage-container .text .title {
    font-size: 28px;
    text-align: center;
  }
  .business-resource-page .resourcepage-container .text .info {
    width: 100%;
  }
  .campus-page {
    height: 100vh;
  }
  .campus-page .campuspage-container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .campus-page .campuspage-container .text {
    width: 100%;
  }
  .campus-page .campuspage-container .text .title {
    font-size: 28px;
    text-align: center;
  }
  .campus-page .campuspage-container .text .info {
    width: 100%;
  }
  .health-page {
    height: 100vh;
  }
  .health-page .healthpage-container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .health-page .healthpage-container .text {
    width: 100%;
  }
  .health-page .healthpage-container .text .title {
    font-size: 28px;
    text-align: center;
  }
  .health-page .healthpage-container .text .info {
    width: 100%;
  }
  .details-page .detailspage-container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .details-page .detailspage-container .content .img {
    width: auto;
  }
}
