/*
 * @Description: ~ Copyright (c) 2023.
 *  ~ 北京九思金信科技有限公司对该文件内容保留所有权利。
 *  ~ 未经许可，不得私自拷贝、传播、发布、引用该文件内容，违者将被追究法律责任。
 */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overscroll-behavior: none;
  overflow: hidden;
  /* 禁止默认滚动条 */
}

.joys-about-box {
  width: 100%;
  /* min-width: 1200px; */
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: #f1f1f1;
}

.joys-about-home {
  position: relative;
  width: 100%;
  min-width: 1200px;
  height: 720px;
  background: rgba(0, 0, 0, 1);
  /* 半透明黑色 */
  z-index: 10;
}

.joys-about-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/about-logo.jpg') center center no-repeat;
  /* background: #140202; 半透明黑色 */
  background-size: cover;
  z-index: -1;
  /* 放在背景图片之下，但仍在内容之上（由于父元素的z-index为0） */
}

.joys-about-home-header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 99.2%;
  display: flex;
  align-items: center;
  padding: 65px 80px 35px 80px;
  background: rgba(0, 0, 0, 0);
  transition: all .5s ease;
}
.joys-ai-home-header-app{
  display:none;
}
.logo-img {
  width: 128px;
  height: 32px;
}
.joys-website-home-nav {
  width: calc(100% - 258px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.joys-website-home-header-nav{
  display: flex;
  align-items: center;
  font-family: PingFang SC;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0px;
  text-align: left;
}
.joys-website-home-header-nav>li>a:hover {
  color: #f4120a;
}

.joys-website-home-header-nav>li>a {
  color: #FFFFFFCC;
  font-size: 15px;
  text-decoration: none;
}
.joys-website-home-header-nav > li > a.active {
  color: #f4120a; /* 设置为红色或其他高亮颜色 */
}
.joys-website-home-header-nav li{
  margin: 0px 50px;
  
}



.joys-about-header-content {
  position: absolute;
  top: 46%;
  left: 20%;
  opacity: 1;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  /* 防止文本换行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 使用省略号表示超出文本 */
  box-sizing: border-box;
  /* 包括内边距和边框在内的总宽度 */
}

.about-header-title {
  color: #FFFFFF;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 42px;
  line-height: normal;
  letter-spacing: 0px;
  text-align: left;
}

.about-header-text {
  margin-top: 24px;
  color: #F0F0F0;
  font-family: Roboto;
  font-weight: regular;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: left;
}
.joys-about-certification-bottom{
  /* width: 50%; */
   max-width: 1200px; 
 /* margin: 0 auto;  */
  /* width: 84%; */
  overflow: hidden; /* 隐藏超出部分 */
  position: relative; /* 用于定位虚化效果 */
  margin: 72px auto 0;
  /* margin-left: 100px; */
}



.joys-about-certification-bottom-carousel{
  display: flex;
  overflow: hidden; /* 隐藏超出部分 */
  transition: margin-left 0.3s ease; /* 平滑过渡虚化效果 */
}
/* 虚化效果 */

.joys-about-certification-bottom::before{
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  /* background: linear-gradient(90deg, #FFFFFF 48.25%, rgba(255, 255, 255, 0) 120.82%); */
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left:0;
  width: 80px;
  z-index:1;
}

.joys-about-certification-bottom::after{
  background: linear-gradient(270deg, #FFFFFF 27.43%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 80px;
}
.carousel-item{
  flex-shrink: 0;
  width: 160px;
  height: 219px;
  padding: 10px 6px;
  margin: 30px 30px;
  border-radius: 2px;
  border-radius: 6px;
  border: 2px solid ;
  border-top-color: #FFFFFF; /* 上边框颜色 */
  border-right-color: #FFFFFF; /* 右边框颜色 */
  border-left-color: #FFFFFF; /* 左边框颜色 */
  border-bottom-color: rgba(203, 203, 203, 0.01); /* 底边框颜色 */
  background: linear-gradient(205.34deg, #F1F8FF 1.86%, #FFF9F8 32.47%, #FBFBFF 68.83%, #FFFFFF 87.14%);
  box-shadow: 
  0px 2px 38px 14px #574C4C08, /* 模糊较大的阴影 */
  0px 0px 2px 2px #58404003, /* 模糊较小的阴影 */
  0px 4px 12px 6px #2D272703; /* 模糊中等的阴影 */
}

@keyframes slideNormal {
  to {
    opacity: 1;
    /* 最终状态不透明 */
  }
}

.about-time {
  font-size: 72px;
  font-weight: 900;
  line-height: 98px;
  letter-spacing: 32px;
  background: linear-gradient(90deg, #BD4824 14.000000000000002%, #FFA7A7 29%, #E0855B 100%);
  /* 设置背景裁剪为文字区域 */
  -webkit-background-clip: text;
  color: transparent;
  /* 将默认文字颜色设置为透明 */
  transition: all 1s ease;
  /* 平滑过渡效果 */
}

.transform-future {
  margin-left: 22px;
  font-size: 72px;
  font-weight: 900;
  line-height: 98px;
  letter-spacing: 32px;
  background: linear-gradient(90deg, #FAFAFA 14.000000000000002%, #AAAAAA 90%, #B23712 100%);
  /* 设置背景裁剪为文字区域 */
  -webkit-background-clip: text;
  color: transparent;
  /* 将默认文字颜色设置为透明 */
  transition: all 1s ease;
  /* 平滑过渡效果 */
}

.about-text {
  margin-top: 56px;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  color: #ACACAC;
}

.joys-about-container {
  box-sizing: border-box;
  background: #F1F1F1;
  width: 100%;
  min-width: 1200px;
  padding: 118px 0;
}
.joys-about-container-width{
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
}
.joys-about-title-box{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.joys-about-title {
  text-align: center;
  color: #333333;
  font-family: Roboto;
  font-weight: 500;
  font-size: 30px;
  line-height: normal;
  letter-spacing: 0px;
}

.joys-about-linear,.joys-about-company-map-linear,.joys-about-certification-linear {
  margin: 15px auto 0;
  background: #7D2622;
  width: 40px;
  height: 3px;
}
.joys-about-content{
  margin-top: 42px;
  color: #1F1F1F;
  font-family: PingFang SC;
  font-weight: regular;
  font-size: 15px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: left;
}
.joys-about-number {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 68px 105px 0px;
}

.joys-about-number ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center
}

.joys-about-number li {
  display: flex;
  /* flex-direction: column; */
  /* align-items: center; */
}

.number {
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
  color: #7D2622;
}

.plus {
  line-height: 24px;
  margin-left: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #393939;
}
.text{
  margin-top: 8px;
  color: #000;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 36px;
  font-size: 16px;
}
@keyframes scrollNumber {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.animated-number {
  animation: scrollNumber 2s ease-in-out forwards;
}
.joys-about-corporate-culture{
  box-sizing: border-box;
  width: 100%;
  min-width: 1200px;
  height: 700px;
  background: url('../img/about-company.png') center center no-repeat;
  background-size: cover;
  padding: 158px 0;
}
.joys-about-corporate-culture-content{
  display: flex;
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  height: 372px;
}
.corporate-culture-content-left{
  background: #FFFFFF;
  width: 503px;
  height: 372px;
}
.corporate-culture-left-title{
  margin: 65px 54px 0px 54px;
  color: #622A2A;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: left;
}
.corporate-culture-left-descript{
    margin: 48px 54px 0;
    color: #484848;
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 15px;
    line-height: 36px;
    letter-spacing: 2px;
    text-align: left;
}

.corporate-culture-content-right{
  background: #EBE9D8;
  width: 673px;
  height: 372px;
  text-align: center;
}
.corporate-culture-content-right img{
 background-size: contain;
  height: 100%;
}
.joys-about-company-map{
  width: 100%;
  min-width: 1200px;
  background: #1D0404;
  padding: 87px 20px 100px 20px;
  position: relative;
  z-index: 1;
}
.joys-about-company-map::before{
  content: "";
  height: 295px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/about-map-bg.png') center center no-repeat;
  background-size: cover;
  z-index: -1; /* 放在背景图片之下，但仍在内容之上（由于父元素的z-index为0） */
}

.joys-about-company-map-title{
  text-align: center;
  color: #FFFFFF;
  font-family: Roboto;
  font-weight: 500;
  font-size: 30px;
  line-height: normal;
  letter-spacing: 0px;
}
.joys-about-company-map-descript{
  text-align: center;
  color:#D3D3D3;
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 4px;
}

.mt5{
  margin-top: 22px;
}
.mt2{
  margin-top: 8px;
}
.joys-about-company-map-content{
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  width: 100%;
  max-width: 1200px;
  margin: 88px auto 0 auto;
}

.company-map-left {
  width: 421px;
  color: #FFFFFF;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 15px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: left;
  margin-bottom: 52px;
}
.company-map-left-p{
  font-size: 15px;
}

.descript1,.descript2,.descript3{
  margin: 46px 0;
  display: flex;
  margin-top: 42px;
  color: #F4F4F4;
  font-family: PingFang SC;
  font-weight: 400;
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: left;
  opacity: 0.1;
  transform: translateY(40%);
  transition: opacity 0s, transform 0s; /* 添加过渡效果 */
}
@keyframes slideup {
  0% {
    opacity: 0.1;
    transform: translateY(40%);
  }
  50%{
    opacity: 0.5;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-map-descript-line{
  background: #7D2622;
  width: 6px;
  height: 18px;
  display: inline-block;
  margin-right: 17px;
  vertical-align: middle;
  margin-top: 11px;
}
.company-map-right{
  /* width: 703px; */
  padding: 12px 0px 5px 117px;
}
.company-map-right img{
    width: 703px;
    height: 543px;
    background-size: cover;
}
.joys-about-certification{
  width: 100%;
  min-width: 1200px;
  padding: 82px 0 126px 0;
  background: #ffffff;
}
.joys-about-certification-width{
  width: 86%;
  margin: 0 auto;
}

.joys-about-certification-title{
  text-align: center;
  color: #333333;
  font-family: Roboto;
  font-weight: 500;
  font-size: 30px;
  line-height: normal;
  letter-spacing: 0px;
}

.joys-about-certification-timeline {
  display: flex;
  margin-top: 55px;
  position: relative;
  justify-content: center;
}

.joys-about-certification-timeline-item {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
  position: relative; /* 添加相对定位 */
}

.joys-about-certification-timeline-item::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 28px;
  height: 28px;
  background: url('../img/red.png') center center no-repeat;
  background-size: cover;
  border-radius: 50%;
  margin-left: -15px;
}
.joys-about-certification-timeline-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: url('../img/dashed.png') center center no-repeat;
    background-size: cover;
    top: 104%;
    left: 57%;
    margin-top: -24px;
}

.joys-about-certification-timeline-item:last-of-type::after {
  background:none;
}

.animated-timeline{
  cursor: default;
  transition: all .3s linear;
  /* 初始位置 */
  transform: translateY(0px);
}
.animated-timeline:hover {
  cursor: default;
  transition: all .3s linear;
  transform: translateY(-20px); /* 向上移动20px */
}

.joys-about-certification-timeline-img{
  width: 190px;
  height: 260px;
  padding: 8px;
  background: linear-gradient(205.34deg, #F1F8FF 1.86%, #FFF9F8 32.47%, #FBFBFF 68.83%, #FFFFFF 87.14%);
  box-shadow: 
    0px 2px 38px 14px rgba(87, 76, 76, 0.05), /* 模糊较大的阴影 */
    0px 0px 2px 2px rgba(88, 64, 0, 0.02), /* 模糊较小的阴影 */
    0px 4px 12px 6px rgba(45, 39, 3, 0.02); /* 模糊中等的阴影 */
  border-radius: 6px;
  border: 2px solid ;
  border-top-color: #FFFFFF; /* 上边框颜色 */
  border-right-color: #FFFFFF; /* 右边框颜色 */
  border-left-color: #FFFFFF; /* 左边框颜色 */
  border-bottom-color: rgba(203, 203, 203, 0.01); /* 底边框颜色 */
  /* border-image-source: linear-gradient(180deg, #FFFFFF 73%, rgba(203, 203, 203, 0.01) 100%); */
}
.joys-about-certification-timeline-img > img{
  width: 100%;
  height: 100%;
}
.timeline-padding{
  padding: 72px 6px;
}
.joys-about-certification-timeline-content{
  margin: 33px 0px 52px 0px;
  text-align: center;
  color: #817575;
  font-size: 14px;
}
.joys-about-descript-app,.joys-about-app-block{
  display: none;
}
@media (min-width: 1080px) and (max-width: 1500px) {
  .joys-about-certification{
    overflow-x: hidden;
  }
  .joys-about-certification-bottom{
    width: 100%;
    max-width: 1000px; /* 设置最大宽度，确保内容不会超出背景图 */
    margin: 0 auto; 
    overflow: hidden; /* 隐藏超出部分 */
    position: relative; /* 用于定位虚化效果 */
    margin-top: 72px;
    margin-left: 10px;
  }
  .joys-about-certification-timeline-item{
    margin-right:12px;
  }
}

@media (max-width: 1080px) {
  .joys-about-box {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    scroll-behavior: smooth;

  }
  .about-header-title {
    display: flex;
    flex-direction: column;
  }

  .about-header-text {
    margin-top: 24px;
    color: #F0F0F0;
    font-family: Roboto;
    font-weight: regular;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
  }



  .about-text-title {
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .about-text-second,
  .about-text-describe {
    font-size: 14px;
    line-height: 40px;
    margin-bottom: 18px;
  }
}

@media (max-width: 750px) {
  .joys-about-box {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    overflow-y: auto;
    scroll-behavior: smooth;
  }
  .joys-about-home{
    height: 280px;
    min-width: 100%;
  }
  .joys-about-home-header{
    display:none;
  }
  .joys-ai-home-header-app{
    display: block;
    width:100%;
    /* width: calc(100% - 15px); */
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
  }
  .joys-ai-home-header-app-flex{
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(51, 51, 51, 0.65);
    backdrop-filter: blur(1.5px);
  }
  .logo-img{
    width: 80px;
    height: 20px;
  }
  .joys-website-home-nav-icon{
    position: relative;
    cursor: pointer;
  }
  .joys-website-home-nav-content{
    display: none;
  }
  .joys-website-home-nav-text{
    display: flex;
    justify-content: start;
    align-items: end;
    flex-direction: column;
    padding: 8px 16px 0px 16px;
    height: 266px;
    width: 100%;
    background: rgba(51, 51, 51, 0.65);
    backdrop-filter: blur(1.5px);
  }
  .joys-website-home-nav-text > li{
    margin: 14px 0px;
  }
  .joys-website-home-nav-text > li > a{
    text-decoration: none;
    color: #fff;
  }
  .joys-website-home-nav-text > li > a:hover{
    color: #f4120a;
  }
  .joys-website-home-nav-text > li > a.active {
    color: #f4120a; /* 设置为红色或其他高亮颜色 */
  }
  .joys-about-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-42%, -50%);
    /* 延迟0.1秒开始动画 */
    white-space: nowrap;
    /* 防止文本换行 */
    overflow: hidden;
    /* 隐藏超出部分 */
    text-overflow: ellipsis;
    /* 使用省略号表示超出文本 */
    width: 100%;
    /* 使宽度适应父容器 */
    box-sizing: border-box;
    /* 包括内边距和边框在内的总宽度 */
  }
  .about-header-title{
    color: #FFF;
    font-family: "PingFang SC";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .about-header-text{
    margin-top:20px;
    color: #F0F0F0;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 215.385% */
  }
  .joys-about-container{
    min-width: 100%;
    height: auto;
    padding:24px 30px;
  }
  .joys-about-title{
    color: #333;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px; /* 281.25% */
  }
  .joys-about-container-width{
    max-width: 375px;
    margin: 0 auto;
  }
  .joys-about-linear,.joys-about-company-map-linear,.joys-about-certification-linear {
    margin: 0px auto 0;
    width: 32px;
    height: 2px;
  }
  .joys-about-content{
    margin-top: 20px;
    color: #1F1F1F;
    font-family: "PingFang SC";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 233.333% */
  }
  .joys-about-number {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 60px  30px;
  }
  .number {
    color: #7D2622;
    font-family: Anybody;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; 
  }
  .text{
    color: #000;
    font-family: "PingFang SC";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 300% */
  }
 .joys-about-corporate-culture{
    min-width: 100%;
    height: auto;
    padding: 0px;
  }
  .joys-about-corporate-culture-content{
    display: flex;
    flex-direction: column;
    min-width: 100%;
    /* margin: 0 auto; */
    height: auto;
  }
  .corporate-culture-content-left{
    width: 100%;
    height: 280px;
  }
  .corporate-culture-left-title{
    text-align: left;
    width:335px;
    margin: 65px auto 0px auto;
    color: #622A2A;
    font-family: "PingFang SC";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
  }
  .corporate-culture-left-descript{
    margin: 26px auto 0;
    width: 335px;
    color: #484848;
    font-family: "PingFang SC";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 200% */
    letter-spacing: 2px;
  }
  .corporate-culture-content-right{
    width: 100%;
    height: 372px;
    
  }
  .corporate-culture-content-right img{
    width:100%;
    height:100%;
    padding:30px 15px 35px 15px;
  }
  .joys-about-company-map{
    min-width:100%;
    padding: 56px 0 110px 0;
  }
  .joys-about-company-map-title{
    font-size: 16px;
  }
  .joys-about-company-map-descript{
    max-width: 382px;
    font-size: 12px;
    letter-spacing: 1px;
    margin:24px auto 20px;
    line-height: 18px;
  }
  .mt2{
    margin:0px auto;
  }
  
  
  .joys-about-descript-app{
    display: block;
    max-width: 382px;
  }
  .joys-about-company-map-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 55px auto 0 auto;
  }
  
  .company-map-left{
    width: 370px;
    color: #FFF;
    text-align: center;
    font-family: "PingFang SC";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 233.333% */
  }
  .company-map-left-p{
    font-size: 12px;
  }
  .company-map-right{
    padding: 45px 13px 24px 6px;
  }
  .company-map-right img{
    width: 347px;
    height: 268px;
  }
  
  .descript1,.descript2,.descript3{
    margin: 34px 0;
    display: flex;
    color: #FFF;
    font-family: "PingFang SC";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
    letter-spacing: 0px;
    text-align: left;
    opacity: 1;
    transform: translateY(40%);
    transition: opacity 0s, transform 0s; /* 添加过渡效果 */
  }
  .joys-about-certification{
    min-width: 100%;
    padding-top:44px;
    padding-bottom:126px;
    background: #ffffff;
  }
  .joys-about-certification-width{
    width: 100%;
    margin: 0 auto;
  }
  .joys-about-certification-title{
    text-align: center;
    color: #333;
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px; /* 281.25% */
  }
  .joys-about-certification-timeline{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    position: relative;
  }
  .joys-about-certification-timeline-item{
     display: flex;
    justify-content: end;
    flex-direction: row;
    margin-right: 32px;
    position: relative;
    width: 100%;
  }
  .joys-about-certification-timeline-item::before {
    position: absolute;
    bottom: 145px;
    left: 10%;
    margin-left: -9px;
  }
  .joys-about-certification-timeline-item::after {
    position: absolute;
    top: 114%;
    left: -39%;
    margin-top: 15px;
    transform: rotate(90deg)
  }
  .company-map-descript-line{
    margin-top:8px;
    width: 3px;
    height: 18px;
  }
  .animated-timeline{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width:330px;
    margin-bottom: 22px;
  }
 
  .joys-about-certification-timeline-content{
    color: #5A5353;
    text-align: center;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width:100px;
  }
  .animated-timeline:hover {
    cursor: default;
    transition: none;
    transform: none; /* 向上移动20px */
  }
  .joys-about-app-block{
    /* display: block; */
    /* width:100%; */
  }
  .joys-about-app-none{
    display: none;
  }
}