:root {
  --nav-height: 60px;
}

/* 基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* 导航栏样式 */
.navbar {
  height: var(--nav-height);
  box-shadow: inset 0 -1px 0 0 hsla(210, 6%, 94%, .36);
  position: fixed;
  top: 0;
  background: hsla(0, 0%, 100%, .25);
  width: 100%;
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.wrap {
  width: 1200px;
  margin: auto;
}

.wrap-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 32px;
}

/* 桌面端导航菜单 */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
  height: var(--nav-height);
  line-height: var(--nav-height);
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1D2129;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  height: 60px;
  padding: 0 24px;
  position: relative;
}

.nav-item:hover .nav-link {
  color: #165DFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 2px;
  background-color: #165DFF;
  transition: width 0.3s ease;
}

.nav-item:hover .nav-link::after {
  width: 28px;
}

.nav-item.active .nav-link::after {
  width: 28px;
}

.has-dropdown {
  display: flex;
  align-items: center;
}

.has-dropdown .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.3s ease;
  position: absolute;
  right: 10px;
}

.nav-item:hover .has-dropdown .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10px);
  top: 100%;
  width: 136px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 14px;
  padding: 4px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 10px);
}

.dropdown-item {
  display: block;
  height: 40px;
  line-height: 40px;
  color: #1D2129;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(22, 93, 255, 0.05);
  color: #165DFF;
}


.banner {
  height: 458px;
  position: relative;
  overflow: hidden;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-content h1 {
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 79px;
  letter-spacing: 5px;
}

.banner-content p {
  width: 479px;
  height: 60px;
  margin-top: 28px;
  color: #091221;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  opacity: .7;
}


.page_footer {
  background: #030a1a;
  padding: 60px 0 36px;
  color: hsla(0, 0%, 100%, .6);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal
}

.page_footer a {
  color: inherit;
}

.page_col a:hover {
  color: #fff;
  ;
}

.page_row {
  display: flex;
  flex-direction: row
}

.page_row .page_col {
  flex: 0 0 19%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start
}

.page_row .page_col:first-child {
  flex: 0 0 10%
}

.page_row .page_col:last-child {
  flex: 1 1
}

.page_row .page_col:nth-child(4) {
  flex: 0 0 24%
}

.page_row .page_label {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px
}

.page_row .page_item+.page_item {
  margin-top: 16px
}

.page_contactIcon {
  width: 120px;
  margin: 16px auto 0px;
  border-radius: 8px
}

.page_center {
  text-align: center
}

.page_copyright {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030a1a;
  color: hsla(0, 0%, 100%, .6);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: .52px
}

.page_copyright a {
  color: inherit;
}

.page_copyright span {
  margin-right: 12px
}

.page_copyright a+a {
  margin-left: 8px
}

.page_beian {
  background: transparent url(https://virtual-man.xfyun.cn/_next/static/media/beian.6ddb281d.png) no-repeat 0/contain;
  padding-left: 24px
}

.product {
  padding-top: 80px;
}

.section_title {
  color: #030a1a;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2.88px;
  text-align: center;
}

.section_subtitle {
  color: rgba(3, 10, 26, .6);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-top: 24px;
  padding-bottom: 48px;
}

.section_content {}

.product_pros {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px
}

.product_proItem {
  position: relative;
  border-radius: 14px;
  flex-shrink: 0;
  margin-bottom: 30px;
  overflow: hidden
}

.product_proItem:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 198px;
  height: 172px;
  background: transparent none no-repeat 50%/contain;
  transition: all .3s ease-in-out
}

.product_proItem .product_videoBlock__2CQtQ {
  position: relative;
  overflow: visible;
  z-index: 2;
  --border-color: #fff
}

.product_proItem.product_xfzhizuo {
  width: 1120px;
  height: 458px;
  background: linear-gradient(100deg, #006eff -4.96%, #00a3ff), linear-gradient(0deg, #3f6cfd, #3f6cfd), linear-gradient(100deg, #006eff -4.96%, #01a7ff 40.96%, #02f0ff);
  filter: drop-shadow(0 4px 24px rgba(2, 38, 71, .06));
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  padding: 32px 32px 32px 48px
}

.product_proItem.product_xfzhizuo:before {
  left: 250px;
  top: 286px;
  background-image: url(https://virtual-man.xfyun.cn/_next/static/media/icon-xfzhizuo.76ce54d8.png)
}

.product_proItem.product_xfzhizuo:hover:before {
  transform: scale(1.6) rotate(45deg) translateY(-50px)
}

.product_proItem.product_aio {
  width: 545px;
  height: 660px;
  background: linear-gradient(146deg, #4176ff, #3f8bfd), linear-gradient(146deg, #4741ff, #3f6cfd), linear-gradient(99deg, #1ea0fe, #43c6fe), linear-gradient(100deg, #4741ff -4.96%, #bb98ff);
  filter: drop-shadow(0 4px 24px rgba(2, 38, 71, .06))
}

.product_proItem.product_aio:before {
  width: 196px;
  height: 348px;
  left: 349px;
  top: 312px;
  background-image: url(https://virtual-man.xfyun.cn/_next/static/media/icon-aiomachine.fab81602.png)
}

.product_proItem.product_aio:hover:before {
  transform: scale(1.6) rotate(10deg) translateY(-50px)
}

.product_proItem.product_alive {
  width: 545px;
  height: 660px;
  background: linear-gradient(99deg, #52acff, #18c8ff), linear-gradient(99deg, #03ccbc, #72f0ca);
  filter: drop-shadow(0 4px 24px rgba(2, 38, 71, .06))
}

.product_proItem.product_alive:before {
  width: 196px;
  height: 348px;
  left: 349px;
  top: 312px;
  background-image: url(https://virtual-man.xfyun.cn/_next/static/media/icon-ailive.62c35a36.png)
}

.product_proItem.product_alive:hover:before {
  transform: scale(1.6) rotate(10deg) translateY(-50px)
}

.product_proItem.product_openapi {
  width: 1120px;
  height: 416px;
  border-radius: 24px;
  border: 1px solid #fff;
  box-shadow: 0 4px 24px 0 rgba(2, 38, 71, .06);
  background: transparent url(https://virtual-man.xfyun.cn/_next/static/media/blkbg-api.04da0007.jpg) no-repeat 50%/1200px 480px
}

.product_aio .product_info,
.product_alive .product_info,
.product_openapi .product_info,
.product_xfzhizuo .product_info {
  position: relative;
  padding: 52px 25px 0 0;
  z-index: 2
}

.product_aio .product_info .product_title,
.product_alive .product_info .product_title,
.product_openapi .product_info .product_title,
.product_xfzhizuo .product_info .product_title {
  color: #fff;
  text-align: justify;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px
}

.product_aio .product_info .product_desc,
.product_alive .product_info .product_desc,
.product_openapi .product_info .product_desc,
.product_xfzhizuo .product_info .product_desc {
  color: #fff;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 24px
}

.product_aio .product_info .product_learnMore,
.product_alive .product_info .product_learnMore,
.product_openapi .product_info .product_learnMore,
.product_xfzhizuo .product_info .product_learnMore {
  margin-top: 76px;
  --background: hsla(0, 0%, 100%, .24);
  --border-color: hsla(0, 0%, 100%, .8);
  --arrow-right-fill: #fff
}

.product_aio,
.product_alive,
.product_openapi {
  padding-top: 22px
}

.product_aio .product_info,
.product_alive .product_info,
.product_openapi .product_info {
  padding: 52px 32px 0
}

.product_aio .product_info .product_learnMore,
.product_alive .product_info .product_learnMore,
.product_openapi .product_info .product_learnMore {
  margin-top: 48px
}

.product_openapi {
  display: flex;
  flex-flow: row nowrap;
  padding-top: 0
}

.product_openapi .product_openapiImg__lJzj5 {
  width: 580px;
  height: 333px;
  margin-top: 42px
}

.product_openapi .product_info {
  padding: 84px 52px 0 48px;
  flex: 0 0 480px
}

.product_openapi .product_info .product_title {
  color: #000
}

.product_openapi .product_info .product_desc {
  color: rgba(3, 10, 26, .6)
}

.product_openapi .product_info .product_moreRow {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-top: 38px
}

.product_openapi .product_info .product_learnMore {
  margin-top: 0;
  --background: linear-gradient(100deg, #02f0ff -4.96%, #006eff);
  --border-color: linear-gradient(100deg, #02f0ff -4.96%, #006eff)
}

.product_openapi .product_info .product_viewer__2hkSg {
  width: 104px;
  display: flex;
  align-items: center;
  margin-left: 32px;
  cursor: default;
  color: #006eff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px
}

.product_openapi .product_info .product_viewer__2hkSg svg {
  margin-right: 8px;
  fill: #006eff
}

.product_openapi .product_info .product_viewer__2hkSg:hover {
  color: #01a7ff
}

.product_openapi .product_info .product_viewer__2hkSg:hover svg {
  fill: #01a7ff
}

.product_videoBlock__2CQtQ {
  margin: 0 auto
}

.product_blkAio,
.product_blkAlive,
.product_blkZhizuo {
  --border-color: hsla(0, 0%, 100%, .8);
  --background-color: hsla(0, 0%, 100%, .5);
  --padding: 10px;
  --border-radius: 20px;
  --diffX: 16px;
  --diffY: 10px;
  --video-play-icon-size: 60px
}

.product_blkZhizuo {
  width: 634px;
  flex: 0 0 634px;
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.product_blkZhizuo img {
  border-radius: 20px;
}

.product_blkAio,
.product_blkAlive {
  width: 501px;
  height: 292px;
  margin: auto;
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.product_blkAio img,
.product_blkAlive img {
  border-radius: 20px;
}

.learnmore_btn {
  width: 168px;
  height: 48px;
  border-radius: 100px;
  border: 1px solid var(--border-color, --background);
  background: var(--background, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--more-font-color, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  cursor: default
}

.learnmore_btn .arrow-icon {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  transition: all .3s ease-out
}

.learnmore_btn .arrow-icon path {
  fill: var(--arrow-right-fill, #fff)
}

.learnmore_btn:hover {
  box-shadow: 0 0 10px 0 var(--more-box-shadow, --border-color);
  cursor: pointer
}

.learnmore_btn:hover .arrow-icon {
  transform: translateX(40%)
}

.product_learnMore {
  margin-top: 76px;
  --background: hsla(0, 0%, 100%, .24);
  --border-color: hsla(0, 0%, 100%, .8);
  --arrow-right-fill: #fff;
}



.customize_caserow {
  position: relative;
  overflow: hidden
}

.customize_caserow:after {
  content: "";
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  z-index: -1;
}

.customize_caserow .customize_font {
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 40px;
  width: 375px;
  height: 96px;
  background: transparent none no-repeat 50%/contain
}

.customize_caserow .customize_info .customize_title {
  text-align: justify;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 24px
}

.customize_caserow .customize_info p {
  color: rgba(3, 10, 26, .6);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.customize_caserow .customize_info p:before {
  content: "";
  display: block;
  background-color: #006efe;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 3px 3px rgba(0, 110, 254, .1);
  border-radius: 50%;
  margin-right: 10px
}

.customize_caserow .customize_info p+p {
  margin-top: 20px
}

.customize_caserow.customize_right:after {
  left: 50%
}

.customize_caserow.customize_realman {
  --video-play-icon-size: 60px
}

.customize_caserow.customize_realman .customize_font {
  background-image: url(https://virtual-man.xfyun.cn/_next/static/media/font-cloning.3e755113.png);
  transform: translateX(100px)
}

.customize_caserow.customize_realman .customize_title {
  background: linear-gradient(99deg, #4741ff -4.94%, #bb98ff 60.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.customize_caserow.customize_realman .customize_info {
  padding-left: 24px
}

.customize_caserow.customize_realman:after,
.customize_caserow.customize_realman:before {
  background: linear-gradient(180deg, #f2f1ff, rgba(242, 241, 255, 0))
}

.customize_caserow.customize_clonevoice .customize_font {
  background-image: url(https://virtual-man.xfyun.cn/_next/static/media/font-reprint.3b8f81a1.png);
  transform: translateX(calc(-100% - 100px))
}

.customize_caserow.customize_clonevoice .customize_info {
  padding-left: 24px
}

.customize_caserow.customize_clonevoice .customize_title {
  background: linear-gradient(99deg, #006eff -4.95%, #02f0ff 60.75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.customize_caserow.customize_clonevoice:after,
.customize_caserow.customize_clonevoice:before {
  background: linear-gradient(180deg, #f0f6ff, rgba(240, 246, 255, 0))
}

.customize_caserow.customize_clonevoice:before {
  left: 50%
}

.customize_caserow.customize_custom3d .customize_font {
  background-image: url(https://virtual-man.xfyun.cn/_next/static/media/font-custom.7fff5441.png);
  transform: translateX(100px)
}

.customize_caserow.customize_custom3d .customize_title {
  background: linear-gradient(98deg, #03ccbc, #72f0ca 68.1%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.customize_caserow.customize_custom3d .customize_info {
  padding-left: 24px
}

.customize_caserow.customize_custom3d:after,
.customize_caserow.customize_custom3d:before {
  background: linear-gradient(180deg, #f0fdfd, rgba(240, 253, 253, 0))
}

.customize_case {
  height: 600px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  z-index: 2
}

.customize_case .customize_learnMore {
  margin-top: 60px;
  --background: linear-gradient(100deg, #02f0ff -4.96%, #006eff);
  --arrow-right-fill: #fff
}

.customize_videoBlock {
  overflow: visible;
  --border-color: #fff
}

.customize_blk3d__rHpUv,
.customize_blkAvatar,
.customize_blkVoice {
  width: 696px;
  height: 406px;
  --padding: 10px;
  --border-radius: 20px;
  --diffX: 16px;
  --diffY: 10px
}

.customize_blkAvatar {
  --border-color: #cccaff;
  --background-color: #c4c2ff
}

.customize_blk3d {
  --border-color: #c3f0ec;
  --background-color: #c3f0ec
}

.customize_blkVoice {
  --border-color: #c2f6fe;
  --background-color: rgba(0, 110, 255, .16);
  --background-color: linear-gradient(99deg, rgba(0, 110, 255, .16) -4.95%, rgba(2, 240, 255, .26) 110.75%)
}

.customize_voiceWraper {
  background: #d9f1fe none no-repeat 50%/cover;
  height: 100%;
  overflow: auto
}

.customize_voiceWraper::-webkit-scrollbar {
  width: 1px
}

.customize_voiceWraper::-webkit-scrollbar-track {
  background: #f1f1f1
}

.customize_voiceWraper::-webkit-scrollbar-thumb,
.customize_voiceWraper::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, .1)
}

:root {
  --background: linear-gradient(100deg, #02f0ff -4.96%, #006eff);
  --border-color: linear-gradient(100deg, #02f0ff -4.96%, #006eff);
  --more-font-color: #fff;
  --arrow-right-fill: #fff
}

.solutions_content {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center
}

.solutions_videoBlock {
  margin: 40px auto 80px
}

.solutions_blkCase {
  width: 1200px;
  height: 302px;
  --border-color: #fff;
  --background-color: linear-gradient(90deg, hsla(0, 0%, 100%, .6), hsla(0, 0%, 100%, .43));
  --padding: 16px;
  --border-radius: 20px;
  --diffX: 16px;
  --diffY: 10px
}

.solutions_wraper {
  display: flex;
  align-items: flex-start;
  animation: all ease 1s;
}


.solutions_info {
  flex: 1 1;
  padding: 18px 36px 0 40px;
  text-align: left;
}

.solutions_info h3 {
  color: #030a1a;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px
}

.solutions_info p {
  margin: 12px auto 34px;
  color: rgba(3, 10, 26, .6);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px
}

.solutions_example {
  width: 480px;
  flex: 0 0 480px;
  height: 270px;
  overflow: hidden;
  border-radius: 20px;
}

.solutions_example video {
  height: 100%;
  width: 100%
}

.solutions_example .solutions_img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.solutions_learnMore {
  --background: rgba(0, 110, 255, .08);
  --arrow-right-fill: #006eff;
  color: #006eff
}

.solutions_content {
  text-align: center;
}

.sectionTab_tabsbar {
  display: inline-block;
  width: auto;
  height: 46px;
  padding: 4px;
  background: #fff;
  box-shadow: 0 0 1px 1px #edeff4;
  border-radius: 100px;
}

.sectionTab_switchtabs {
  margin: 0 auto;
  position: relative;
  display: flex;
  width: auto;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.sectionTab_switchtabs .sectionTab_tab {
  min-width: var(--min-tab-width, 130px);
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030a1a;
  text-align: center;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  --main-fill-color: #030a1a
}

.sectionTab_switchtabs .sectionTab_tab svg {
  width: 20px;
  height: 20px;
  margin-right: 6px
}

.sectionTab_switchtabs .sectionTab_tab:hover {
  background: rgba(0, 110, 255, .04);
  transition: all .4s ease-in-out;
  border-radius: 100px
}

.sectionTab_switchtabs .sectionTab_tab.sectionTab_active {
  color: #006eff;
  --main-fill-color: #006eff
}

.sectionTab_switchtabs:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--min-tab-width, 130px);
  height: 38px;
  border-radius: 100px;
  background: rgba(0, 110, 255, .08);
  transition: all .3s ease-in-out;
  transform: translateX(var(--active-left))
}

.videoBlock_wrapper {
  position: relative;
  overflow: visible
}

.videoBlock_wrapper .videoBlock_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  border-radius: inherit;
  border-radius: var(--border-radius, 20px);
  box-shadow: 0 0 0 1px var(--border-color, #fff);
  background: var(--background-color, #fff);
  padding: var(--padding, 10px);
  transition: top .3s ease-in-out;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: none;
}

.videoBlock_wrapper .videoBlock_layer.active {
  display: block;
}


.videoBlock_wrapper .videoBlock_layerContainer {
  position: relative;
  flex: 1 1;
  overflow: hidden;
  height: 100%;
  border-radius: calc(var(--border-radius, 20px)*3/4)
}

.videoBlock_wrapper.entered .videoBlock_layer:first-child {
  top: calc(var(--diffY, 10px));
  transition-delay: .9s
}

.videoBlock_wrapper.entered .videoBlock_layer:nth-child(2) {
  top: calc(var(--diffY, 10px)*2);
  transition-delay: 1s
}

.solutions_blkCase {
  width: 1200px;
  height: 302px;
  --border-color: #fff;
  --background-color: linear-gradient(90deg, hsla(0, 0%, 100%, .6), hsla(0, 0%, 100%, .43));
  --padding: 16px;
  --border-radius: 20px;
  --diffX: 16px;
  --diffY: 10px
}

.solutions_videoBlock {
  margin: 40px auto 0px;
}


.ability_section {
  /* background: #f1f5ff none no-repeat top/2560px 1531px; */
  overflow: hidden; padding-bottom:80px;
}

.ability_section .ability_abilityBox {
  display: flex;
  justify-content: center
}

.ability_section .ability_detail {
  width: 1179px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px
}

.ability_section .ability_detail .ability_abilityItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 577px;
  height: 608px;
  background: linear-gradient(167.63deg, #f2f6fd 39.13%, #d0e2ff 97.93%);
  box-shadow: 0 6px 4px 0 transparent;
  border-radius: 8px;
  transition: all .25s ease-in-out;
  overflow: hidden
}

.ability_section .ability_detail .ability_abilityItem:hover {
  transform: scale(1.025)
}

.ability_section .ability_detail .ability_abilityItem:hover img {
  transform: scale(1.06)
}

.ability_section .ability_detail .ability_textBox {
  height: 258px;
  padding: 44px 40px 0
}

.ability_section .ability_detail .ability_textBox .ability_title {
  font-family: Alimama ShuHeiTi;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: .06em;
  margin-bottom: 22px
}

.ability_section .ability_detail .ability_textBox .ability_content {
  width: 490px;
  font-family: PingFang SC;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px
}

.ability_section .ability_detail .ability_textBox .ability_btn {
  position: absolute;
  left: 40px;
  top: 237px;
  width: 148px;
  height: 45px;
  border-radius: 8px;
  background: linear-gradient(301.93deg, #0270ff 13.53%, #44b0ff 101.32%);
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  text-align: center;
  color: #fff;
  cursor: pointer
}

.ability_section .ability_detail img {
  position: absolute;
  bottom: 0;
  height: 324px;
  transition: all .25s ease-in-out
}

.dsiplay_section {
  display: flex;
  background: #f1f5ff no-repeat top/2560px 430px;
  height: 430px;
  flex-direction: column;
  align-items: center
}

.dsiplay_section .dsiplay_detail {
  margin-top: 20px;
  width: 1120px;
  height: 184px;
  display: flex;
  justify-content: space-around
}

.dsiplay_section .dsiplay_displayBox {
  display: flex;
  flex-direction: column;
  align-items: center
}

.dsiplay_section .dsiplay_displayBox img {
  width: 130px;
  height: 130px
}

.dsiplay_section .dsiplay_displayBox p {
  width: 184px;
  text-align: center;
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: .04em
}

.dsiplay_section .dsiplay_a_r {
  display: flex;
  width: 36px;
  height: 130px;
  align-items: center
}

.dsiplay_section .dsiplay_a_r img {
  width: 36px;
  height: 22px
}

.dsiplay_section .dsiplay_btn {
  margin: 60px auto 0;
  width: 168px;
  height: 48px;
  border-radius: 24px;
  background: linear-gradient(99.66deg, #02f0ff -4.96%, #006eff);
  text-align: center;
  line-height: 48px;
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 400;
  color: #fff
}

.recommend {
  margin-bottom: 80px;
}

.recommend .videoBlock_layer {
  background: linear-gradient(167.63deg, #f2f6fd 39.13%, #d0e2ff 97.93%);
}

.details {
  padding: 80px 0;
}

.details .title {
  text-align: center;
  margin-bottom: 50px;
}

.details .title h2 {
  background-image: none;
  margin-bottom: 20px;
}

.details-box {
  margin-bottom: 30px;
}

.details-box p {
  line-height: 24px;
  margin-bottom: 10px;
}

.details-box img {
  max-width: 100%;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}

.details-dir {
  padding: 20px 0;
  border-top: #006eff solid 2px;
  font-weight: 700;
  line-height: 30px;
}

.details-dir a {
  color: #000;
}

.ability_cards {
  display: flex;
  justify-content: center;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto
}

.ability_card {
  width: 210px;
  min-height: 260px;
  text-align: justify;
  padding: 32px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative
}

.ability_card img {
  width: 120px;
  height: 120px;
  margin-bottom: 58px;
  margin-top: 0
}

.ability_card .ability_cardTitle {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
  color: #222
}

.ability_card .ability_cardDesc {
  color: #556679;
  font-size: 15px;
  line-height: 1.7;
  word-break: break-all
}

.news_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 80px;
}

/* 新闻项样式 */
.news-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #165DFF;
  transition: height 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.news-item:hover::before {
  height: 100%;
}

.news-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  position: relative;
  padding-right: 10px;
}

.news-item:hover .news-title {
  color: #165DFF;
}

.news-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #165DFF;
  transition: width 0.3s ease;
}

.news-item:hover .news-title::after {
  width: 100%;
}

.news-description {
  color: #666;
  line-height: 1.7;

  /* 核心：超过4行省略 */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-item:hover .news-description {
  color: #444;
}

.contact-bar {
  position: fixed;
  bottom: 120px;
  right: 52px;
  z-index: 997;
  width: 56px;
  height: 182px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.contactbar_contact {
  width: 56px;
  height: 182px;
  flex: 0 0 182px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(2,38,71,.06);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start
}

.contactbar_contactBtn {
  text-align: center;
  color: #030a1a;
  position: relative;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
  cursor: default
}

.contactbar_contactBtn p {
  width: 2.2em;
  margin: 0 auto
}

.contactbar_contactBtn>svg {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px
}

.contactbar_contactBtn>svg.contactbar_tel__xU1d7 path {
  stroke: var(--contact-svg-color,#030a1a)
}

.contactbar_contactBtn>svg.contactbar_listen path {
  fill: var(--contact-svg-color,#030a1a)
}

.contactbar_contactBtn .contactbar_tel__xU1d7 {
  width: 24px;
  height: 24px;
  margin-bottom: 8px
}

.contactbar_contactBtn:hover {
  color: #006eff;
  --contact-svg-color: #006eff
}

.contactbar_contactBtn+.contactbar_contactBtn {
  margin-top: 20px
}
.contactbar_paneDetail {
  padding: 8px 8px 12px;
  opacity: 0;
  transition: all .4s ease-in-out;
  position: absolute;
  right: 60px;
  top: 0;
  border-radius: 6px;
  background: #fff;
  display: none;
  box-shadow: 0 4px 24px 0 rgba(2,38,71,.06)
}

.contactbar_paneDetail.contactbar_telDetail {
  padding: 5px 20px;
  width: 245px
}

.contactbar_paneDetail .contactbar_qrcodeTip__Z40b_ {
  width: 100%;
  padding: 0;
  color: #030a1a;
  white-space: nowrap;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center
}

.contactbar_qrcode {
  width: 120px
}

.contactbar_contactBtn:hover .contactbar_paneDetail {
  opacity: 1;
  display: block
}

.contactbar_paneDetail .contactbar_telDetailTitle {
  margin-top: 10px;
  display: flex;
  align-items: center;
  color: #030a1a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal
}

.contactbar_paneDetail .contactbar_telDetailTitle span {
  color: rgba(3,10,26,.48);
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal
}

.contactbar_paneDetail .contactbar_telphone__SGYJ_ {
  color: #006eff;
  width: 120px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: justify;
  margin-bottom: 10px
}

.contactbar_paneDetail .contactbar_telIcon {
  width: 20px;
  margin-right: 10px
}
html {
  min-width: 1200px;
}