返回
05 / 233
作者头像
Zairun
11 次阅读
/* 美化标签方框 */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;                    /* 标签之间适度间距 */
}

.tagcloud a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E5F1FB;    /* 精致的浅金色边框 */
    color: #3C82DC !important;     /* 深灰色字体 */
    padding: 6px 14px !important;  /* 较小的内边距 */
    margin: 0 !important;
    border-radius: 2px !important; /* 圆角效果 */
    font-size: 13px !important;    /* 小巧的字体 */
    text-decoration: none !important;
    transition: all 0.3s ease;
    min-width: 80px;               /* 较小的最小宽度 */
    height: 45px;                  /* 较小的高度 */
    box-sizing: border-box;
}

.tagcloud a:hover {
    background-color: #247BFF !important; /* 悬停时浅金色背景 */
    color: #fff !important;               /* 悬停时文字颜色变为白色 */
    transform: scale(1.05) !important;    /* 放大效果更温和 */
}

 

0 11

读者留言 (0)

暂无留言,快来发表第一条评论吧~

发表评论

电子邮件地址不会被公开。