.teamBox {
    background: #E2EBFA;
    padding: 40rem;
    box-sizing: border-box;
    margin-bottom: 20rem;
}

/* 左侧菜单样式 */
.boxLeft .menuCss {
    padding-left: 40rem;
    box-sizing: border-box;
    line-height: 70rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* border-left: 3px solid transparent; */
    /* margin-bottom: 5px; */
    /* border-radius: 0 5px 5px 0; */
}

.boxLeft .menuCss:hover {
    background-color: #f5f5f5;
    color: #376DD9;
    box-shadow: 0 2px 8px rgba(55, 109, 217, 0.1);
}

.menuCss2 {
    color: #376DD9;
    background: #fff;
    padding-left: 40rem;
    line-height: 70rem;
    box-sizing: border-box;
    border-left: 3px solid #376DD9;
    transition: all 0.3s ease;
    font-weight: bold;
    /* margin-bottom: 5px; */
    /* border-radius: 0 5px 5px 0; */
    box-shadow: 0 2px 8px rgba(55, 109, 217, 0.15);
}

.menuCss2:hover {
    background-color: #f8f9ff;
    box-shadow: 0 4px 12px rgba(55, 109, 217, 0.2);
}

/* 菜单加载状态 */
.boxLeft .menuCss.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

.boxLeft .menuCss.loading:hover {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}

/* 菜单指示器样式 */
.boxLeft .menuCss p span,
.menuCss2 p span {
    color: #376DD9;
    font-weight: bold;
    margin-right: 10px;
    animation: indicatorPulse 1.5s infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.teamTitle {
    font-size: 30rem;
    color: #000000;
    line-height: 42rem;
    text-align: center;
}

.teamP {
    font-size: 16px;
    color: #000000;
    line-height: 23px;
    text-align: center;
    margin-bottom: 30px;
}

.teamR {
    display: flex;
    flex-wrap: wrap;
}

.teamRbox {
    width: 32%;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    padding: 10px;
    box-sizing: border-box;
    text-align: left;
    margin-right: 10px;
    margin-bottom: 10px;
    /* text-align: center; */
}

.teamName {
    font-size: 16px;
    color: #000000;
    line-height: 19px;
    margin-right: 18px;
    margin-bottom: 10px;

}

.teamJob {
    font-size: 12px;
    color: #BDBDBD;
    line-height: 14px;
    text-align: left;
}

/* 开放课题 */

.Rtext {
    font-size: 16px;
    color: #000000;
    line-height: 31px;
    text-align: left;
}

.yuan {
    border: 3px solid #376DD9;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.boxRignt ul {
    padding: 0;
    margin-bottom: 40px;
}

.boxRignt ul li {
    line-height: 15px !important;
    margin-bottom: 20px;
}

.phoneCss {
    font-size: 20px;
    color: #376DD9;
    line-height: 23px;
    text-align: left;
    margin-bottom: 20px;
}

.phoneText {
    background: #F8F7F7;
    border-radius: 30px 30px 30px 30px;
    font-size: 20px;
    color: #000000;
    line-height: 30px;
    text-align: left;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

/* 右侧内容区域动画 */
.boxRignt .teamBox {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}