
/* 基础容器 */
.novel-cloud-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
}


/* 标题样式 */
.novel-cloud-container h1 {
    color: #e57019;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #e57019;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* 标签云核心样式 */
.tag-cloud-wrapper {
    line-height: 2.2;
    text-align: center;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(34, 34, 34, 0.05);
}

/* 通用标签样式 */
.tag-cloud-wrapper a {
    display: inline-block;
    margin: 0 0.4rem 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 20px; /* 圆角边框 */
    border: 1px solid #e0e0e0;/* 新增边框 */
    color: #555555;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: #f5f5f5;
}

.tag-link-count {
	display: inline-block;
    background-color: #e0e0e0;
    color: #777777;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
    transition: all 0.3s ease;
}

/* 悬停交互效果 */
.tag-cloud-wrapper a:hover {
    transform: translateY(-2px);
	background-color: #e57019;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 标签大小动态效果（通过wp_tag_cloud参数控制） */
.tag-link-1 { font-size: 12px !important; }
.tag-link-2 { font-size: 14px !important; }
.tag-link-3 { font-size: 16px !important; }
.tag-link-4 { font-size: 18px !important; }
.tag-link-5 { font-size: 20px !important; }
