
.tab_box {
    display: flex;
    justify-content: space-between;
}

.tab_box .lf {
    width: 20%;
    margin-right: 30px;
    border: 1px solid #eaeaea;
}

.tab_box .lf .one {
    border-bottom: 1px solid #eaeaea;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
}

.tab_box .lf .one.active{
    background-color: #1BA585;
    color: #FFF;
}
.tab_box .rg {
    flex: 1;
    border: 1px solid #eaeaea;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
}

.tab_box a {
    width: auto;
}

.tab_box .rg .one {
    display: none;
}

.tab_box .rg .active {
    display: block;
}

.tab_box .rg .tab_content a {
    border: 1px solid #ddd;
    margin-right: 15px;
    padding: 4px 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tab_more {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #eaeaea;
    padding: 4px 6px;
    margin: 10px 0;
}
.tab_more span{
    font-weight: 600;
    color: #1BA585;
    font-size: 16px;
}
.tab_more a{
    font-size: 14px;
}
.tab_content {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4,1fr);
}
