.innerTab {
    width: 300px;
    margin-right: 30px;
    flex-shrink: 0;
}

.innerTab .title {
    background-color: #9c266e;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    font-size: 20px;
    height: 80px;
    font-family: Microsoft YaHei;
    font-weight: bold;
}

.innerTab .tabs {
    font-size: 20px;
    color: #9c266e;
    box-sizing: border-box;
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.innerTab .tabs li {
    height: 80px;
    font-size: 20px;
    font-weight: normal;
    color: #333;
    box-sizing: border-box;
    padding: 0;
    transition: 0.2s;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.innerTab .tabs li a {
    width: 100%;
    height: 100%;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /*单行省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 80px;
    text-align: center;
}

.innerTab .tabs li:first-of-type {
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
}

.innerTab .tabs li[active] {
    font-size: 22px;
    color: #9c266e;
    font-weight: bold;
    pointer-events: none;
}

.innerTab .tabs li:hover {
    font-size: 20px;
    color: #9c266e;
    background-color: #9c266e11;
}

[isMobile] .innerTab {
    margin-bottom: 20px;
    display: none;
}

[isMobile] .innerTab .tabs {
    padding-bottom: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 20px;
    display: none;
}

[isMobile] .innerTab .tabs li {
    font-size: 16px;
    width: calc(16px * 2);
    padding: 0;
    margin: 0px 5px;
}