.entry-content .category_colors {
    display: flex; /* 使用 Flexbox 布局 */
    flex-wrap: wrap; /* 自动换行 */
}

.entry-content .category_colors .zk-color {
    width: 190px;
    margin: 30px 5px 0;
    padding-top: 70px; 
    text-decoration: none;
    position: relative; /* 添加相对定位，为了容纳绝对定位的元素 */
}


.entry-content .category_colors .zk-color span {
    display: block;
    line-height: 18px;
    height: 30px;
    overflow: hidden;
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
    background: #FFF;
    color: #000;
}

.entry-content .category_colors .zk-color .rgb-hex {
    position: absolute; /* 绝对定位 */
    top: 25%; /* 距离底部的位置 */
    left: 0; /* 居中显示在色块中 */
    width: 100%; /* 宽度与色块相同 */
    text-align: center; /* 文本居中 */
    font-size: 10px; /* 字体大小 */
    color: #fff; /* 字体颜色 */
}
