.registerbanner {
    width: 100vw;
    width: 100%;
    max-height: 75vh;
    max-height: 750px;
      color: #38424c;
    overflow: hidden;
  }
  .registerbanner .text span{
    color: #fff;
  }
 
  .registerbanner .text {
    position: absolute;
  
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
  
    padding: 0 1rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    line-height: normal;
    text-align: left;
  }
  .registerbanner h3{
  color: #fff;
  }
  .registerbanner h1 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
  }
.registerBox{
    padding: 60px 0 50px 0;
}
.registerContainer{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #F5FAFF;
}
.registerContainer .registerTitle{
    font-size: 30px;
    margin-bottom: 50px;
}
.register_li{
    width: 100%;
    border-radius: 70px;
    background: #FFFFFF;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}

.register_li .register_icon1{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: inline-block;
    background-image: url(/images/category-icon-1.png);
    background-size: cover;
}
.register_li .register_icon2{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: inline-block;
    background-image: url(/images/category-icon-2.png);
    background-size: cover;
}
.register_li .register_icon3{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: inline-block;
    background-image: url(/images/category-icon-3.png);
    background-size: cover;
}
.register_li .register_icon4{
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: inline-block;
    background-image: url(/images/category-icon-4.png);
    background-size: cover;
}
.register_category_title{
    font-size: 18px;
    color: #38424C;
}
.register_category_content{
    font-size: 16px;
    color: #A7AEB5;
}
.register_right_arrow{
    margin-left: auto;
    width: 14px;
    height: 12px;
    background-image: url(/images/right-arrow.png);
    background-size: cover;
    display: inline-block;
}
.register_right_tips {
    font-size: 16px;
    padding-left: 25px;
    display: flex; /* 新增flex布局 */
    align-items: center; /* 顶部对齐 */
}
.register_right_tips .register_right_tips_icon {
    width: 14px;
    height: 14px;
    background-image: url(/images/attention-icon.png);
    background-size: cover;
    display: inline-block;
    margin-right: 5px;
    flex-shrink: 0; /* 禁止图标缩放 */
}
.register_text {
    display: inline; /* 默认行内显示 */
}

@media (max-width: 1024px) {
    .registerContainer .registerTitle{
        font-size: 26px;
        margin-bottom: 25px;
    }
    .register_li{
       padding: 18px 20px;
    }
    .register_category_content{
        display: none;
    }
    .register_li .register_category_icon{
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .register_right_arrow{
        width: 12px;
        height: 10px;
    }
    .register_right_tips{
        font-size: 14px;
    }
    .bannerSwipperBox{
        display: none;
    }
    .mainWrapper{
        margin-top: 60px;
    }
}
@media (max-width: 767px){
    .register_right_tips{
        align-items: flex-start;
    }
    
    .break-on-mobile::before { /* 添加换行符 */
        content: "\A"; /* CSS换行符 */
        white-space: pre; /* 保留空白 */
    }
}