.container .ab_part1 {
  position: relative;
  height: 200vh;
}

.about_banner {
  height: 100vh;
  position: sticky;
  top: 0;
}

.container .about_banner .about_banner_img {
  width: 100%;
  height: 100%;
  /* 核心：蒙版图片（推荐PNG透明图，按轮廓控制显示） */
  -webkit-mask-image: url(../../img/ablogo.svg); /* 兼容webkit内核 */
  mask-image: url(../../img/ablogo.svg);
  /* 蒙版的位置/大小（和background属性语法一致） */
  -webkit-mask-position:52.8% center;
  mask-position: 52.8% center;
  -webkit-mask-size: 1200%;
  mask-size: 1200%;
  /* 蒙版重复（默认repeat，按需关闭） */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: all 2s;
}

.container .about_banner.show .about_banner_img{
    -webkit-mask-size: 25%;
    mask-size: 25%;
    -webkit-mask-position:50% 47%;
  mask-position: 50% 47%;
}

.container .about_banner .about_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .about_banner .about_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.container .about_banner.show .about_title {
    opacity: 0;
}

.container .about_banner .about_title span {
  font-size: .52rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(255, 255, 255, 1);
}

.container .section_1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 0;
  gap: .48rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*background: url('../../img/about/about_1.png') no-repeat center center;*/
  /*background-size: cover;*/
  opacity: 0;
  transition: all 0.5s;
}
.container .show .section_1{
    opacity: 1;
    transition: all 0.5s 2.5s;
}

.container .section_1,
.container .section_2,
.container .section_3,
.container .section_4,
.container .section_5,
.container .section_6,
.container .section_7 {
  min-height: 100vh;
}

.container .section_1 .avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.container .section_1 .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.container .section_1 .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .24rem;
  padding-top: 6rem;
  opacity: 1;
}

.container .section_1 .name span:first-child {
  font-size: .7rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .74rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_1 .name span:last-child {
  font-size: .30rem;
  font-weight: 400;
  line-height: .34rem;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
}

.container .section_1 .name span:last-child strong {
  font-weight: 700;
}

.container .section_2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 0;
  gap: .48rem;
  background: url('../../img/about/about_1.png') no-repeat center center;
  background-size: cover;
}

.container .section_2 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 13.14rem;
}

.container .section_2 .content .name {
  font-size: .4rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .4rem;
}

.container .section_2 .content .desc {
  font-size: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .32rem;
  color: rgba(102, 102, 102, 1);
  margin-bottom: .24rem;
  text-align: center;
}

.container .section_2 .content .desc:last-child {
  margin-bottom: 0;
}

.container .section_2 .icons {
  display: flex;
  width: 11.16rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.07rem;
}

.container .section_2 .icons .icons_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .24rem;
}

.container .section_2 .icons .icons_item img:nth-child(1) {
  width: .5198rem;
  height: .5668rem;
}

.container .section_2 .icons .icons_item img:nth-child(2) {
  width: .6rem;
  height: .516rem;
}

.container .section_2 .icons .icons_item img:nth-child(3) {
  width: .54rem;
  height: .5898rem;
}

.container .section_2 .icons .icons_item img:nth-child(4) {
  width: .54rem;
  height: .5726rem;
}

.container .section_2 .icons .icons_item span.number {
  font-size: .6rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  line-height: .64rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_2 .icons .icons_item span.number strong {
  font-weight: 500;
  color: rgba(9, 32, 50, 1);
  background: rgba(9, 32, 50, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .22rem;
  line-height: .24rem;
  font-family: 'HarmonyOS Sans SC';
}

.container .section_2 .icons .icons_item span:last-child {
  font-size: .18rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .2rem;
  color: rgba(51, 51, 51, 1);
}

.container .section_2 .video_box {
    width: 16.64rem;
    height: 6.57rem;
    border-radius: 0 .4rem 0 .4rem;
    overflow: hidden;
    position: relative;
    margin: 1.2rem 0 0 0;
}
.container .section_2 .video_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container .section_2 .video_box .play {
    width: 1.04rem;
    height: 1.04rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

/* 弹窗样式 */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-content {
    position: relative;
    width: 80%;
    max-width: 1280px;
}
.modal-content video {
    width: 100%;
    height: auto;
}
.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.container .section_3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1.28rem 0;
  background: url('../../img/about/about_4.png') no-repeat center center;
  background-size: cover;
}

.container .section_3 .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  margin-bottom: .47rem;
}

.container .section_3 .title .name {
  font-size: .4rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_3 .title .desc {
  font-size: .18rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .2rem;
  color: rgba(51, 51, 51, 1);
}

.container .section_3 .content {
  /*width: 15rem;*/
  width: 100%;
  /*padding-left: 4.2rem;*/
  height: 4.8rem;
  /*margin-left: 4.2rem;*/
  display: flex;
  overflow: hidden;
}

.container .section_3 .content .section-3-swiper {
  width: 100%;
}

.container .section_3 .content .content_item {
  display: flex;
  gap: .67rem;
  text-decoration: none;
  border-radius: .1rem;
  background: rgba(255, 255, 255, 1);
}

.container .section_3 .content .content_item .img_box {
  width: 4rem;
  height: 4.8rem;
  border-radius: .1rem 0 0 .1rem;
  flex-shrink: 0;
}

.container .section_3 .content .content_item .img_box img {
  width: 100%;
  height: 100%;
  border-radius: .1rem 0 0 .1rem;
  object-fit: cover;
}

.container .section_3 .content .content_item .info {
  display: flex;
  flex-direction: column;
  width: 6.8rem;
}

.container .section_3 .content .content_item .info .name {
  font-size: .3rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .46rem;
  color: rgba(51, 51, 51, 1);
  margin: .88rem 0 .18rem 0;
}

.container .section_3 .content .content_item .info .desc {
  font-size: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .32rem;
  color: rgba(102, 102, 102, 1);
  margin-bottom: .79rem;
  width: 5.46rem;

}

.container .section_3 .content .content_item .info .number {
  font-size: .22rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .22rem;
  color: rgba(153, 153, 153, 1);
}

.container .section_3 .content .content_item .info .number strong {
  font-weight: 500;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .4rem;
  line-height: .44rem;
  font-family: 'HarmonyOS Sans SC';
  margin-right: .13rem;
}

.container .section_3 .control {
  margin: .68rem 1.3rem;
  display: flex;
  gap: 3.49rem;
  align-items: center;
  margin-left: 5.95rem;
}

.container .section_3 .control .line {
  width: 7.3rem;
  height: .02rem;
  background: rgba(223, 223, 223, 1);
}

.container .section_3 .control .line .line_item {
  width: 20%;
  height: .02rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .section_3 .control .buttons {
  display: flex;
  align-items: center;
  gap: .28rem;
}

.container .section_3 .control .buttons .button {
  width: .36rem;
  height: .36rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border: .01rem solid rgba(208, 208, 208, 1);
}

.container .section_3 .control .buttons .button:hover {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  border-style: none;
}

.container .section_3 .control .buttons .button img {
  width: .1275rem;
  height: .075rem;
}

.container .section_3 .control .buttons .button .normal {
  display: block;
}

.container .section_3 .control .buttons .button .active {
  display: none;
}

.container .section_3 .control .buttons .button:hover .normal {
  display: none;
}

.container .section_3 .control .buttons .button:hover .active {
  display: block;
}

.container .section_3 .application_box .application-swiper {
  width: 100%;
  height: 100%;
}

.container .section_4 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1.28rem 0;
}

.container .section_4 .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  margin-bottom: .47rem;
}

.container .section_4 .title .name {
  font-size: .4rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_4 .title .desc {
  font-size: .18rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .2rem;
  color: rgba(51, 51, 51, 1);
}

.container .section_4 .content {
  background: url('../../img/about/about_4.png') no-repeat center center;
  background-size: cover;
  display: flex;
  gap: .2rem;
  width: 16.6rem;
  height: 7.4rem;
  padding: .7rem .5rem;
  border-radius: .16rem;
}

.container .section_4 .content .content_info {
  width: 7.2rem;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
  gap: .2rem;
}

.container .section_4 .content .content_info .content_info_item {
  width: 100%;
  padding: .44rem .45rem;
  background: rgba(255, 255, 255, 1);
  border-radius: .16rem;
  overflow: hidden;
  cursor: pointer;
}

.container .section_4 .content .content_info .content_info_item.active {
    padding-bottom: 1.21rem;
}

.container .section_4 .content .content_info .content_info_item .name {
  display: flex;
  justify-content: space-between;
}

.container .section_4 .content .content_info .content_info_item .name span {
  font-size: .3rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .32rem;
  color: rgba(51, 51, 51, 1);
  margin-bottom: .18rem;
}

.container .section_4 .content .content_info .content_info_item.active .name span {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_4 .content .content_info .content_info_item .name .icon {
  width: .34rem;
  height: .34rem;
  border-radius: 50%;
  background: rgba(239, 239, 239, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .section_4 .content .content_info .content_info_item.active .name .icon {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .section_4 .content .content_info .content_info_item .name .icon img {
  width: .1rem;
  height: .05rem;
}

.container .section_4 .content .content_info .content_info_item .name .icon .active {
  display: none;
}

.container .section_4 .content .content_info .content_info_item.active .name .icon .normal {
  display: block;
}

.container .section_4 .content .content_info .content_info_item.active .name .icon .active {
  display: block;
}

.container .section_4 .content .content_info .content_info_item.active .name .icon .normal {
  display: none;
}




.container .section_4 .content .content_info .content_info_item .desc {
  display: none;
  font-size: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .32rem;
  color: rgba(102, 102, 102, 1);
  margin-top: .38rem;
  width: 6.42rem;
}

.container .section_4 .content .content_info .content_info_item.active .desc {
  display: block;
}

.container .section_4 .content .content_img {
  width: 8.2rem;
  height: 6rem;
  border-radius: .1rem;
}

.container .section_4 .content .content_img img {
  width: 100%;
  height: 100%;
  border-radius: .1rem;
  object-fit: cover;
}

.container .section_5 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1.28rem 0;
  height: 100vh;
}

.container .section_5 .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  margin-bottom: .47rem;
}

.container .section_5 .title .name {
  font-size: .4rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_5 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.26rem;
  width: 16.6rem;
  border-radius: .16rem;
  height: 100%;
}

.container .section_5 .content .year {
  width: 7.17rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .36rem;
}

.container .section_5 .content .year .controls {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  display: none;
}

.container .section_5 .content .year .controls .button {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: transparent;
  border: .01rem solid rgba(239, 239, 239, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.container .section_5 .content .year .controls .button:hover {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .section_5 .content .year .controls .button img {
  width: .1rem;
  height: .17rem;
}

.container .section_5 .content .year .controls .button .active {
  display: none;
}

.container .section_5 .content .year .controls .button .normal {
  display: block;
}

.container .section_5 .content .year .controls .button:hover .normal {
  display: none;
}

.container .section_5 .content .year .controls .button:hover .active {
  display: block;
}


.container .section_5 .content .year .yaer_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: .2rem;
  width: 7.4rem;
  height: 8.8rem;
  overflow: hidden;
  position: relative;
}

.container .section_5 .content .year .yaer_box .section-5-swiper {
  width: 100%;
  height: 100%;
}

.container .section_5 .content .section-5_info-swiper {
  width: 100%;
  height: 100%;
}

.container .section_5 .content .year .yaer_box .item span {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  line-height: 1.7rem;
  color: rgba(239, 239, 239, 1);
  position: relative;
  display: flex;
  justify-content: end;
  padding-right: 2.25rem;
}


.container .section_5 .content .year .yaer_box .item.active span {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  /* line-height: 2.6rem; */
  /*padding-right: 1.13rem;*/
  height: 1.8rem;

}


.container .section_5 .content .year .yaer_box .circle {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;

border: .01rem solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
    linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%) border-box;


}



.container .section_5 .content .year .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .2rem;
  display: none;
}



.container .section_5 .content .content_info {
  width: 6.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .2rem;
  /*border-bottom: 1px solid rgba(205, 205, 205, 1);*/
  height: 100%;
  overflow: hidden;
}

.container .section_5 .content .content_info .content_info_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /*gap: .2rem;*/
  border-bottom: 1px solid rgba(205, 205, 205, 1);
  padding-bottom: .54rem;
}

.container .section_5 .content .content_info .content_info_item:last-child {
  /*border-bottom: unset;*/
}

.container .section_5 .content .content_info .content_info_item .name {
  font-size: .4rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_5 .content .content_info .content_info_item .name span {
  font-size: .18rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  line-height: .22rem;
  background: rgba(51, 51, 51, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .2rem;
}

.container .section_5 .content .content_info .content_info_item .name span:first-child {
    font-size: .4rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_5 .content .content_info .content_info_item .desc {
  font-size: .18rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .2rem;
  color: rgba(102, 102, 102, 1);
  margin: .2rem 0 .42rem 0;
}

.container .section_5 .content .content_info .content_info_item .img_box {
  display: none;
  width: 5.5rem;
  height: 3rem;
  border-radius: .1rem;
  margin-top: 0;
}

.container .section_5 .content .content_info .content_info_item.active .img_box {
  display: block;
}



.container .section_5 .content .content_info .content_info_item .img_box img {
  width: 100%;
  height: 100%;
  border-radius: .1rem;
  object-fit: cover;
}



.container .section_6 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1.28rem 0;

  background: url('../../img/about/about_4.png') no-repeat center center;
  background-size: cover;
}

.container .section_6 .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  margin-bottom: .47rem;
}

.container .section_6 .title .name {
  font-size: .4rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_6 .culture {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: .2rem;
  /*margin-left: 1.3rem;*/
  /*width: 17.9rem;*/
  overflow: hidden;
  margin: 0 0 1rem 1.3rem;
  flex-wrap: wrap;
}

.container .section_6 .culture .section-6-swiper {
  width: 100%;
}

.container .section_6 .culture .culture_item {
  /*width: 3.8rem;*/
  width: 4rem;
  /*width: 100%;*/
  height: 2.7rem;
  border-radius: .16rem;
  background: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: .32rem .49rem;
  position: relative;
  border: .01rem solid transparent;
}
.container .section_6 .culture .culture_item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(83.17deg, #0092DF -11.69%, #5BB531 108.84%);
    border-radius: .16rem;
    z-index: 0;
    padding: .01rem;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.container .section_6 .culture .culture_item img {
  width: .4rem;
  height: .4rem;
}

.container .section_6 .culture .culture_item .name {
  font-size: .24rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .26rem;
  color: rgba(51, 51, 51, 1);
  margin: .36rem 0 .18rem 0;
  display: block;
  width: 1.5rem;
}
.container .section_6 .culture .culture_item:hover .name {
  /* background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);*/
  /*-webkit-background-clip: text;*/
  /*background-clip: text;*/
  /*color: transparent;*/
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_6 .culture .culture_item .desc {
  font-size: .16rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .2rem;
  color: rgba(102, 102, 102, 1);
}

.container .section_6 .culture .culture_item .number {
  position: absolute;
  top: .26rem;
  right: .34rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .section_6 .culture .culture_item .number span {
  font-size: .22rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .22rem;
  color: rgba(153, 153, 153, 1);
}

.container .section_6 .culture .culture_item .number strong {
  font-weight: 500;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .4rem;
  line-height: .44rem;
  font-family: 'HarmonyOS Sans SC';
  margin-right: .13rem;
}

.container .section_6 .culture .culture_item .txt_con{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/*.container .section_6 .culture .culture_item:after{*/
/*    content:"";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    pointer-events: none;*/
/*    background: url(../../img/abkuang.svg) ;*/
/*    background-size: 100% 100%;*/
/*    opacity: 0;*/
/*    transition: all 0.5s;*/
/*    z-index: 1;*/
/*}*/

/*.container .section_6 .culture .culture_item:hover:after{opacity:1;}*/

.container .section_6 .control {
  margin: .68rem 1.3rem;
  display: flex;
  gap: 3.49rem;
  align-items: center;
  margin-left: 5.95rem;
}

.container .section_6 .control .line {
  width: 7.3rem;
  height: .02rem;
  background: rgba(223, 223, 223, 1);
}

.container .section_6 .control .line .line_item {
  width: 20%;
  height: .02rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .section_6 .control .buttons {
  display: flex;
  align-items: center;
  gap: .28rem;
}

.container .section_6 .control .buttons .button {
  width: .36rem;
  height: .36rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border: .01rem solid rgba(208, 208, 208, 1);
}

.container .section_6 .control .buttons .button:hover {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  border-style: none;
}

.container .section_6 .control .buttons .button img {
  width: .1275rem;
  height: .075rem;
}

.container .section_6 .control .buttons .button .normal {
  display: block;
}

.container .section_6 .control .buttons .button .active {
  display: none;
}

.container .section_6 .control .buttons .button:hover .normal {
  display: none;
}

.container .section_6 .control .buttons .button:hover .active {
  display: block;
}

.container .section_6 .application_box .application-swiper {
  width: 100%;
  height: 100%;
}

.container .section_6 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  width: 16.6rem;

}

.container .section_6 .content .content_item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: .2rem;
  background: rgba(255, 255, 255, 1);
  padding: .95rem .35rem;
  border-radius: .16rem;
  cursor: pointer;
}

.container .section_6 .content .content_item .name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .2rem;
}

.container .section_6 .content .content_item .name span {
  font-size: .4rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  /*background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
}

.container .section_6 .content .content_item .name .icon {
  width: .34rem;
  height: .34rem;
  border-radius: 50%;
  background: rgba(239, 239, 239, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .section_6 .content .content_item.active .name .icon {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .section_6 .content .content_item .name .icon img {
  width: .1rem;
  height: .05rem;
}

.container .section_6 .content .content_item .name .icon .active {
  display: none;
}

.container .section_6 .content .content_item.active .name .icon .normal {
  display: block;
}

.container .section_6 .content .content_item.active .name .icon .active {
  display: block;
}

.container .section_6 .content .content_item.active .name .icon .normal {
  display: none;
}


.container .section_6 .content .content_item .info {
  width: 8.85rem;
  flex-direction: column;
  gap: .6rem;
  display: none;
}

.container .section_6 .content .content_item.active .info {
  /*display: flex;*/
  margin-top: .1rem;
}

.container .section_6 .content .content_item .info .info_item {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  margin-bottom: 0.6rem;
  gap: .2rem;
  border-bottom: .01rem solid rgba(216, 216, 216, 1);
  padding-bottom: .6rem;
}

.container .section_6 .content .content_item .info .info_item:last-child{margin-bottom:0;}

.container .section_6 .content .content_item .info .info_item .name {
  font-size: .26rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  line-height: .3rem;
  color: rgba(51, 51, 51, 1);
}

.container .section_6 .content .content_item .info .info_item .desc {
  font-size: .18rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC';
  line-height: .36rem;
  color: rgba(102, 102, 102, 1);
}

.container .section_7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container .section_7 .title {
  font-size: .4rem;
  font-weight: 700;
  font-family: 'HarmonyOS Sans SC';
  line-height: .44rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .section_7 .tabs {
  display: flex;
  gap: .22rem;
  margin: .5rem 0 .4rem 0;
}

.container .section_7 .tabs .tab {
  font-size: .16rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  color: rgba(51, 51, 51, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .15rem .45rem;
  line-height: .18rem;
  border-radius: .24rem;
  border: .01rem solid rgba(235, 235, 235, 1);
}

.container .section_7 .tabs .tab.active {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  color: rgba(255, 255, 255, 1);
}

.container .section_7 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  width: 16.6rem;
  overflow: hidden;
}

.container .section_7 .content .section-7-swiper {
  width: 100%;
}

.container .section_7 .content .content_item {
  width: 4rem;
  /*height: 5rem;*/
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  background: rgba(255, 255, 255, 1);
  border-radius: .16rem;
  background: url('../../img/about/about_4.png') no-repeat center center;
  background-size: cover;
}


.container .section_7 .content .content_item img {
  /*width: 2.19rem;*/
  /*max-height: 2.94rem;*/
  width: 3.19rem;
  object-fit: contain;
  height: 2.94rem;
  /*margin: .61rem auto .45rem auto;*/
  margin: .31rem auto .45rem auto;
}

.container .section_7 .content .content_item .name {
    text-align: center;
  font-size: .2rem;
  font-weight: 500;
  font-family: 'HarmonyOS Sans SC';
  line-height: 150%;
  
  color: rgba(51, 51, 51, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 1rem;*/
  height: 1.5rem;
  width: 100%;
  border-top: .01rem solid rgba(216, 216, 216, 1);
  /*padding: .1rem;*/
  padding: .38rem .69rem .4rem .69rem;
}

.container .section_7 .control {
  margin: .68rem 1.3rem;
  display: flex;
  gap: 3.49rem;
  align-items: center;
  margin-left: 5.95rem;
}

.container .section_7 .control .line {
  width: 7.3rem;
  height: .02rem;
  background: rgba(223, 223, 223, 1);
}

.container .section_7 .control .line .line_item {
  width: 20%;
  height: .02rem;
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
}

.container .section_7 .control .buttons {
  display: flex;
  align-items: center;
  gap: .28rem;
}

.container .section_7 .control .buttons .button {
  width: .36rem;
  height: .36rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border: .01rem solid rgba(208, 208, 208, 1);
}

.container .section_7 .control .buttons .button:hover {
  background: linear-gradient(93.3deg, #10499E 1.72%, #417CAC 40.85%, #72B32C 99.8%);
  border-style: none;
}

.container .section_7 .control .buttons .button img {
  width: .1275rem;
  height: .075rem;
}

.container .section_7 .control .buttons .button .normal {
  display: block;
}

.container .section_7 .control .buttons .button .active {
  display: none;
}

.container .section_7 .control .buttons .button:hover .normal {
  display: none;
}

.container .section_7 .control .buttons .button:hover .active {
  display: block;
}

.container .section_7 .application_box .application-swiper {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
    .container .ab_part1 {
        height: auto;
    }
    .about_banner {
        height: auto;
    }
    .container .about_banner .about_banner_img {
        mask-image: unset
    }
    .container .about_banner .about_title span {
        font-size: .46rem;
    }
    .container .section_1 .name {
        display: none;
    }
    .container .section_2 {
        padding: .5rem .32rem;
        height: auto;
        min-height: unset;
    }
    .container .section_2 .content .name {
        font-size: .46rem;
    }
    .container .section_2 .content .desc:last-child {
        font-size: .26rem;
        line-height: .38rem;
    }
    .container .section_2 .icons {
        width: 100%;
    }
    .container .section_2 .icons .icons_item span:last-child {
        font-size: .24rem;
    }
    .container .section_2 .video_box {
        width: 100%;
    }
    
    
    .container .section_3 {
        min-height: unset;
    }
    .container .section_3 .content {
        height: auto;
    }
    .container .section_3 .content .content_item {
        flex-direction: column;
        gap: .47rem;
    }
    .container .section_3 .content .content_item .img_box {
        width: 100%;
    }
    .container .section_3 .content .content_item .info {
        width: 100%;
        padding: .32rem;
        height: 5rem;
    }
    .container .section_3 .content .content_item .info .name {
        margin: 0 0 .18rem 0;
        font-size: .36rem;
    }
    .container .section_3 .content .content_item .info .desc {
        font-size: .22rem;
        margin: 0 0 .5rem 0;
        height: 2rem;
    }
    .container .section_3 .content .content_item .img_box img {
        border-radius: .1rem;
    }
    .container .section_3 .control .buttons .button {
        width: .64rem;
        height: .64rem;
    }
    .container .section_3 .control .buttons .button img {
        width: .24rem;
        height: auto;
    }
    
    .container .section_3 .control {
        width: 100%;
        padding: 0 .32rem 0 .32rem;
        margin: .5rem 0;
        gap: .8rem;
    }
    .container .section_3 .control .line {
        width: 70%;
    }
    .container .section_3 .title .name {
        font-size: .46rem;
    }
    .container .section_3 .title .desc {
        font-size: .24rem;
    }
    
    
    .container .section_4 {
        min-height: unset;
    }
    .container .section_4 .title .desc {
        font-size: .24rem;
    }
    .container .section_4 .content {
        width: 100%;
        height: unset;
        flex-direction: column;
    }
    .container .section_4 .content .content_info {
        width: 100%;
    }
    
    .container .section_4 .content .content_info .content_info_item .desc {
        font-size: .22rem;
        width: unset;
    }
    .container .section_4 .content .content_info .content_info_item.active {
        padding-bottom: .5rem;
    }
    .container .section_4 .content .content_img {
        width: 100%;
        /*margin: 0 .32rem;*/
    }
    
    .container .section_5 {
        /*max-height: 10rem;*/
        height: auto;
        padding: 0;
    }
    .container .section_5 .content {
        width: 100%;
        gap: .5rem;
        align-items: start;
    }
    .container .section_5 .content .year {
        /*width: 3.17rem;*/
        width: 100%;
        display: none;
    }
    .container .section_5 .content .year .yaer_box {
        width: 3.4rem;
    }
    .container .section_5 .content .content_info {
        width: 2.8rem;
    }
    .container .section_5 .content .year .yaer_box .circle {
        width: 2.8rem;
        height: 2.8rem;
    }
    .container .section_5 .content .year .yaer_box .item span {
        padding-right: .5rem;
        font-size: 1rem;
    }
    
    .container .section_5 .content .year .yaer_box .item.active span {
        font-size: 1.2rem;
    }
    .container .section_5 .content .content_info {
        width: 100%;
        padding: .32rem;
        height: auto;
        overflow: unset;
    }
    .container .section_5 .content .content_info .content_info_item {
        margin: .5rem 0 0 0;
    }
    .container .section_5 .content .content_info .content_info_item .img_box {
        width: 100%;
        display: block;
    }
    
    .container .section_5 .content .content_info .content_info_item .name {
        font-size: .46rem;
    }
    .container .section_5 .content .content_info .content_info_item .desc {
        font-size: .24rem;
        line-height: 150%;
    }
    .container .section_5 .content .section-5_info-swiper {
        overflow: hidden;
    }
    .container .section_5 .content .section-5_info-swiper .swiper-wrapper {
        /*height: auto !important;*/
        flex-direction: column;
    }
    .container .section_5 .content .content_info .content_info_item .img_box img {
        object-fit: contain;
    }
    
    .container .section_6 .culture {
        justify-content: center;
        margin: 0;
    }
    .container .section_6 .culture .culture_item {
        width: 3.5rem;
        padding: .32rem .22rem;
    }
    .container .section_6 .culture .culture_item .name {
        font-size: .3rem;
        line-height: 120%;
        width: 100%;
    }
    .container .section_6 .culture .culture_item .desc {
        font-size: .22rem;
        line-height: 130%;
        height: 1rem;
    }
    
    .container .section_7 {
        padding: 1rem 0 0 0;
        min-height: unset;
    }
    .container .section_7 .tabs .tab {
        font-size: .22rem;
    }
    .container .section_7 .content .content_item .name {
        font-size: .26rem;
    }
    
    .container .section_7 .content {
        width: 100%;
    }
    .container .section_7 .control {
        width: 100%;
        padding: 0 .32rem 0 .32rem;
        margin: .5rem 0;
        gap: .8rem;
    }
    .container .section_7 .control .line {
        width: 70%;
        
    }
    .container .section_7 .control .buttons .button {
        width: .64rem;
        height: .64rem;
    }
    .container .section_7 .control .buttons .button img {
        width: .24rem;
        height: auto;
    }
    
    
}


