.hezu h1,.tix>h1{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 50px 0;
    color: #2C4670;
    letter-spacing: 2px;
}
.hezu {padding: 20px 40px 40px;}
.hezu .hezu_d{
    display: flex;
    justify-content: space-between;
    width: 1280px;
    margin: 0 auto;
    /* height: 500px; */
    align-items: center;
}
.hezu .hezu_d p{
  padding: 0 70px 0 0;
  line-height: 35px;
  font-size: 20px;
  text-align: justify;
}
.hezu .hezu_d p b{
    color: #3455D1;
    font-weight: bold;
}
.tix {
    background-color:#EDF4FC ;
    padding: 20px 40px 40px;
}

.tix ul{
    display: flex;
    width: 1280px;
    margin: 0 auto;
    justify-content: space-between;
}
.tix ul li{width: 376px;    background: #fff;    padding-bottom: 60px;}
.tix ul li h1{
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 20px 30px;
    
}
.tix ul li p{
    margin: 0 30px;
    line-height: 40px;
    color: #828282;
    font-size: 20px;
    text-align: justify;
}
.zhichi>h1{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 50px 0;
    color: #fff;
    letter-spacing: 2px;
}
.zhichi{
    background-image: url('../img/Join/背景.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 40px;
    color: #FBFBFC;
}
.zhichi ul {
    display: flex;
    width: 1280px;
    margin: 0 auto;
    justify-content: space-between;
    margin-bottom: 95px;
}
.zhichi ul li{width: 350px;}

.zhichi ul li h1{
    font-size: 20px;
    font-weight: bold;
    border-bottom: 4px solid #0265F1;
    line-height: 40px;
    /* float: left; */
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.zhichi ul li p{
    font-size: 14px;
    line-height: 30px;
    text-align: justify;
    color: #A0A3AC;
}

.text__box {
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 0;
    font-size: 40px;
    line-height: 44px;
    white-space: nowrap;
    animation: width 2s steps(13) forwards;
    -webkit-animation: width 2s steps(13) forwards;
}
  .text__box::after {
    content: "";
    position: absolute;
    right: 0px;
    height: 44px;
    border-right: 2px solid #fff;
    animation: showInfinite 0.5s infinite both;
  }
  .app-text-one {
    animation-delay: 0s;
  }
  
  
  @keyframes width {
    0% {
      width: 0;
    }
    100% {
      width: 6.5em; //  单位em,表示一个字体的宽度
    }
  }
  @keyframes showInfinite {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
