/* PAGE */

.report_buyer_wrapper{
    width:100%;
    padding:8px 0 0;
}

/* TABLE CONTAINER */

.report_buyer_table_container{
    width:1215px;
    margin:0 auto;

    border:1px solid #c3c3c3;
    background:#fff;

    max-height:572px;
    overflow-y:auto;
    overflow-x:hidden;
}

/* SCROLLBAR */

.report_buyer_table_container::-webkit-scrollbar{
    width:12px;
}

.report_buyer_table_container::-webkit-scrollbar-track{
    background:#ececec;
}

.report_buyer_table_container::-webkit-scrollbar-thumb{
    background:#8d8d8d;
    border-radius:10px;
}

/* TABLE */

.report_buyer_table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

/* HEADER */

.report_buyer_table thead th{
    position:sticky;
    top:0;
    z-index:2;

    height:36px;
    background:#ddd7cf;

    border-right:1px solid #c3c3c3;
    border-bottom:1px solid #c3c3c3;

    color:#222;
    font-size:14px;
    font-weight:500;
    text-align:center;

    padding:0 6px;
}

.report_buyer_table thead th:last-child{
    border-right:none;
}

/* BODY */

.report_buyer_table tbody td{
    border-right:1px solid #c3c3c3;
    border-bottom:1px solid #c3c3c3;

    padding:4px 6px;
    font-size:13px;
    color:#222;

    height:40px;
    vertical-align:middle;
}

.report_buyer_table tbody td:last-child{
    border-right:none;
}

/* COLUMN WIDTH */

.report_buyer_clicktime{ width:200px; }
.report_buyer_id{ width:138px; }
.report_buyer_name{ width:243px; }
.report_buyer_mobile{ width:157px; }
.report_buyer_bucketid{ width:92px; }
.report_buyer_bucket{ width:auto; }

/* INPUT */

.report_buyer_bucket_input{
    width:84px;
    height:26px;

    border:1px solid #d4d4d4;
    border-radius:4px;

    background:#f5f6f8;

    padding:0 8px;

    font-size:13px;
    color:#444;

    outline:none;
}

/* ALIGNMENT */

.report_buyer_table td:nth-child(1),
.report_buyer_table td:nth-child(2),
.report_buyer_table td:nth-child(4),
.report_buyer_table td:nth-child(5){
    text-align:center;
}

.report_buyer_table td:nth-child(6){
    text-align:left;
    line-height:22px;
}