
.header{
    height: 86px;
    background-color: #232323;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content{
    display: flex;
    gap: 40px;
    padding: 30px 80px;

}
.content-l{
    width: 160px;
    height: 30px;
}
.left-value{
    width: 100%;
    height: 100%;
    line-height: 30px;
    background-color: #fff;
    color: #131313;
    border-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    cursor: pointer;
}
.left-options{
    max-height: 180px;
    display: none;
    overflow-y: scroll;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.options-item{
    width: 100%;
    height: 30px;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 30px;
    background-color: #fff;
    color: #131313;
    cursor: pointer;
}
.options-item.active{
    font-weight: bold;
}

.content-r {
    flex: 1;
}
.table-container {
    width: 100%;
    overflow-x: auto; 
}


@media (max-width: 1024px) {
    .header{
        height: 12vw;
    }
    .content{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
}


