.activeConUs span:first-child{
    width: 20px;
 
}

.activeConUs span:last-child{
    margin-right: 20px;
    font-size: 18px;
    text-wrap: nowrap;
    font-weight: 700;
    color: #1357A0;
}

.recruit{
    background-color: #1357a0;
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.panel-content {
    transition: all 0.3s ease;
    min-height: 0;
    overflow: hidden;
  }
  
  .panel-content.is-active{
    max-height: 1000px; /* 你可以根据实际内容调整最大高度 */
  }

.rotate-180{
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}