@charset "UTF-8";


//产品详情页表格
.table-responsive{
    width: 100%;
}
.new-table::-webkit-scrollbar{
    display: none;
}
.new-table table thead tr{
    height: 80px;
}
.new-table table thead tr th{
    font-size: 1.5em;
    font-weight: bold;
    background: @color-ff;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    border-bottom: 2px solid @color-dd !important;
}
.new-table table tbody tr td{
    font-size: 1.2em;
    // font-weight: 200;
    padding: 12px 10px !important;
    border-right: 1px solid rgba(0,0,0,.1);
}
.new-table table tbody tr td p{
    margin: 0;
}
.new-table table tbody tr:first-child td:last-child{
    border-right: 0;
    border-top: 0 !important;
}

.new-table table tbody tr td:first-child{
    //  font-weight: 200;
     vertical-align: inherit;
}
.new-table table tbody tr td:first-child P{
    // font-weight: 200;
    vertical-align: inherit;
}

.new-table table.complex{
    width: 100%;
}
.new-table table.complex thead tr th,
.new-table table.complex tbody tr td{
    width: calc(100% / 5);
    min-width: 200px;
}
.new-table table.complex thead tr th:not(:first-child),
.new-table table.complex tbody tr td:not(:first-child){
    text-align: center;
}


//sales-table
.sales-table{
    thead{
        tr{
            th{
                font-size: @fs-16;
            }
        }
    }
    tbody{
        tr{
            td{
                font-size: @fs-16;
                word-break: break-all;
                a{
                    &:hover{
                        text-decoration: underline;
                    }
                }
                &:nth-child(4){
                    text-align: right;
                }
            }
        }
    }
}
