/* 表格样式 */
.table {
    width: 100%;
    height: auto;
    border: #e3e3e3 solid 1px;
}

.table-row {
    border-bottom: #e3e3e3 solid 1px;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row::after {
    content: "";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.table-col {
    border-left: #e3e3e3 solid 1px;
    display: block;
    float: left;
    padding: 10px;
}

.table-col:first-child {
    border-left: none;
}

.table-col a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.col10 {
    width: 10%;
}

.col15 {
    width: 15%;
}

.col25 {
    width: 25%;
}

.col50 {
    width: 50%;
}

.col60 {
    width: 60%;
}

.col75 {
    width: 75%;
}

.col90 {
    width: 90%;
}