@charset "UTF-8";

//thead 背景颜色 #f6f6f6 td分割线
@mixin table($thBg: #f6f6f6, $tdBorder: #ddd) {
    .table {
        width: 100%;
        font-size: $font-size-h6;

        .thead {
            background-color: $thBg;
            color: #999;
        }

        th {
            height: 36px;
            font-weight: 400;
        }

        td {
            border-bottom: 1px dotted $tdBorder;
            vertical-align: top;
            color: #666;

            p {
                padding: ($paddingBase / 2) 0;
            }
        }

        th, td {
            text-align: left;
            padding: 10px;
        }
    }
}