#container {
    width: 653px;
    height: 76px;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
    float: right;
    position: relative;
    padding: 0px;
}

.grid {
    display:block;
   /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);*/
    width: 100%;
    height: 100%;
}

.grid-item {
   /* padding: 2px 5px;*/
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: default;
    float: left;
    width: 33.33%; /* ÈýÁÐ²¼¾Ö */
  /*  height: 30px;*/
    line-height: 30px;
    text-overflow: ellipsis;
}

    .grid-item div.text-content {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
       line-height:2;
        color: #f00;
    }

.icon-left, .icon-right {
    display: inline-block;
    margin: 0 3px;
    color: #666;
    /*font-size: 10px;*/
    width:10px;
    height:10px;
    flex-shrink: 0;
}
    .icon-left img, .icon-right img{
        width:10px;
        height:10px;
    }

    .page-control {
        position: absolute;
        bottom: 2px;
        right: 5px;
        font-size: 12px;
        background-color: rgba(240, 240, 240, 0.8);
        border-radius: 12px;
        padding: 2px 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .page-control span {
        margin: 0 3px;
        cursor: pointer;
        user-select: none;
        color: #333;
        transition: all 0.2s;
    }

        .page-control span:hover {
            color: #0066cc;
        }

#page-indicator {
    display: inline-block;
    min-width: 24px;
    text-align: center;
    font-weight: bold;
}
