
			

/* 调整云标签 */
.my-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 标签间距 */
}

.my-tag-cloud .my-tag {
    font-size: 14px !important;
    color: #333 !important;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s;
}

.my-tag-cloud .my-tag:hover {
    color: #fff !important;
    background-color: #DD183B !important;
    border-color: #DD183B;
}

/* 调整底部小工具三个元素的上下间距 */
.footer-widget-area .widget {
    margin-bottom: 10px; /* 调整为你想要的间距，比如 10px */
}

/* 如果希望 Slogan 和联系信息间距更小 */
.footer-widget-area #block-16 {
    margin-top: 5px;   /* Slogan 上方间距 */
    margin-bottom: 5px; /* Slogan 下方间距 */
}

.footer-widget-area #text-4 {
    margin-top: 5px;    /* 联系信息上方间距 */
    margin-bottom: 0;   /* 最下方不用额外间距 */
}



.product-cat-bg {
    background-size: cover !important;
    background-position: center !important;
}

 /* 产品分类页链接下划线 */
.product-category-link a {
    text-decoration: underline;
}

/* 默认产品卡片SKU显示 */
.fm-product-sku {
    font-size: 13px;
    color: #999999;
    line-height: 1.4;
    margin-bottom: 4px;
    display: block;
    margin-left: 17px;
}

/* 产品页short description段落距离 */
/* Short Description - bullets 段落间距控制 */
.woocommerce-product-details__short-description ul {
    margin: 0;
    padding-left: 18px; /* 保持 bullets 对齐 */
}

.woocommerce-product-details__short-description li {
    margin-bottom: 6px;   /* ← 你真正想要的段落距离 */
}

.woocommerce-product-details__short-description li p {
    margin: 0;            /* ← 关键：清掉 p 的默认段距 */
}

/* mega menu divider */
.mega-sub-divider {
    width: 100%;
    height: 2px;
    background-color: #d7d4d7;
    margin: 4px 0;
}

 /* 产品分类页链接下划线 */
::selection {
  background-color: #bbd6fb;  /* 选中背景色 */
  color: #ffffff;             /* 选中文字颜色 */
}

::-moz-selection {
  background-color: #bbd6fb;
  color: #ffffff;
}

/* 首页产品分类子分类列表整体样式 */
.product-subcategories {
    list-style: none;        /* 去掉 bullets 小圆点 */
    margin: 0;
    padding-left: 15px;      /* 左侧留 15px 空白 */
}

/* 每一项列表 */
.product-subcategories li {
    margin: 0;
    padding: 0;
}

/* 三级子分类链接样式 */
.product-subcategories li a {
    text-decoration: none;   /* 去掉下划线 */
    display: inline-block;
}

/* 可选：鼠标悬停时也不显示下划线 */
.product-subcategories li a:hover {
    text-decoration: none;
}

		