/**
 * HZT Home Product Category Shortcode CSS
 */

/* 主容器样式 */
.hzt-home-product-cat-box {
    width: 229px;
    border-radius: 8px;
    background: #fff;
    margin: 0 auto;
    padding: 10px 8px;
    box-sizing: border-box;
}

/* 重置样式 */
.hzt-home-product-cat-box h3,
.hzt-home-product-cat-box p {
    margin: 0;
    padding: 0;
}

.hzt-home-product-cat-box h3 {
    font-size: 14px;
}

.hzt-home-product-cat-box * h3 {
    margin: 0px;
}

.hzt-home-product-cat-box a {
    text-decoration: none;
    color: #666;
    word-wrap: break-word;
    outline: none;
}

.hzt-home-product-cat-box a:hover {
    text-decoration: none;
}

/* 顶级分类标题样式 */
.hzt-home-product-cat-box h3 a {
    position: relative;
    display: block;
    height: 45px;
    line-height: 45px;
    background: #757575;
    font-size: 18px;
    color: #fff;
    padding-left: 43px;
    width: 100%;
    border-radius: 8px;
    box-sizing: border-box;
    font-weight: normal;
}

.hzt-home-product-cat-box h3 a::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    left: 25px;
    top: 50%;
    margin-top: -3.5px;
    background: #fff;
}

.hzt-home-product-cat-box h3 a:hover {
    background: #0b56d8;
}

/* 子分类容器样式 */
.hzt-home-product-cat-box p {
    padding: 13px 0;
}

/* 子分类链接样式 */
.hzt-home-product-cat-box p a {
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
    background: url(../images/ico2.png) no-repeat 24px center;
    font-size: 16px;
    color: #666;
    padding-left: 40px;
    width: 100%;
    box-sizing: border-box;
    font-weight: normal;
}

/* 响应式样式 */
@media screen and (max-width:1401px) {
    .hzt-home-product-cat-box h3 a {
        height: 38px;
        line-height: 38px;
    }

    .hzt-home-product-cat-box p {
        padding: 8px 0;
    }

    .hzt-home-product-cat-box p a {
        height: 33px;
        line-height: 33px;
        font-size: 14px;
    }
}