body {
    color:#435369;
}
.viewport{ max-width:640px; min-width:300px; margin:0 auto;}
.table-wrap {
    /* 表格 */
    display: table;
    /*width: 80%;*/
    border: 1px solid #8EA9DB;
    border-radius: 6px;
}

.icon-text {
    display: flex;
    align-items: center;
    font-size: 9pt;
}
.icon-text img {
    width: 22x;
    height: 22px;
    margin-right: 8px;
}

.table-row {
    /* 行 */
    display: table-row;
    /*text-align: center;*/
}

.table-row .th {
    /* 表头 */
    display: table-cell;
    text-align: center;
    padding: 12px 0px;
    color: #FFFFFF;
    background: #4472C4;
    font-size: 12px;
    line-height: 20px;
    border-bottom: 1px solid #E5E6EB;
}

.table-row .td {
    /* 内容 */
    display: table-cell;
    padding: 12px 8px;
    overflow: hidden;
    color: #435369;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    line-height: 12px;
}

/* 斑马纹 */
.table-th:nth-child(2n + 1) {
    background: #D9E1F2;
}