.mainBody_R .mainBody_R_mbx {
    padding: 0;
}

.tabPage {
    width: 330px;
    background: #fff;
    padding: 1.5625rem 1.375rem 1.875rem;
}

.tabPage .tabPage_title {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    line-height: 1;
    font-family: "AlibabaPuHuiTi_Bold";
    color: #222222;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: .875rem;
}

.tabPage .tabPage_title img {
    display: block;
    margin-right: .5rem;
}

.tabPage .tabPage_title h6 {
    font-size: 1.25rem;
    font-weight: normal;
    font-family: "AlibabaPuHuiTi_Bold";
}

.tabPage .tabPage_bom .tabPage_box {
    width: 100%;
    background: #f8f8fc;
    margin-bottom: 1.25rem;
}

.tabPage_box .tabPage_box_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .625rem 1.25rem;
    background: #f2f3f7;
    font-size: 1rem;
    line-height: 1.25rem;
    font-family: "AlibabaPuHuiTi_Bold";
    color: #0f4875;
}

.tabPage_box .tabPage_box_top .iconfont {
    font-size: 1rem;
    line-height: 1;
    color: #2c2c2c;
}

.tabPage_box .tabPage_box_bom {
    padding: 1rem .625rem 0 1.25rem;
    background: #f8f8fc;

}

.tabPage_box .tabPage_box_bom ul {
    width: 100%;
    overflow-y: auto;
    /* max-height: 12.25rem; */
}

/* 滚动条整体 */
.tabPage_box .tabPage_box_bom ul::-webkit-scrollbar {
    width: 3px;
    /* 垂直滚动条宽度 */
    background-color: #f0f0f0;
}

/* 滚动条轨道 */
.tabPage_box .tabPage_box_bom ul::-webkit-scrollbar-track {
    background-color: #c2c2c2;
    border-radius: 3px;
}

/* 滚动条滑块 */
.tabPage_box .tabPage_box_bom ul::-webkit-scrollbar-thumb {
    background-color: #0b9cdf;
    border-radius: 3px;
    /* 留出轨道边距 */
}

/* 滑块悬停 */
.tabPage_box .tabPage_box_bom ul::-webkit-scrollbar-thumb:hover {
    background-color: #0b9cdf;
}

.tabPage_box .tabPage_box_bom ul li {
    position: relative;
    padding: .75rem 0;
    padding-left: 1.5rem;
    font-size: .875rem;
    line-height: 0.5rem;
    color: #273663;
    font-family: "AlibabaPuHuiTi_Regular";
}

.tabPage_box .tabPage_box_bom ul li.act {
    color: #0f4875;
}

.tabPage_box .tabPage_box_bom ul li::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background: #e1e2e8;
    z-index: 6;
}

.tabPage_box .tabPage_box_bom ul li.act::before {
    background: #0f4875;
}

.tabPage_box .tabPage_box_bom ul li::after {
    content: "";
    position: absolute;
    left: 5.3px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #e1e2e8;
}