/* ==============================
   产品频道页
   Theme: #026ABD
================================= */

.product-channel-page {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

.product-channel-head {
    margin-bottom: 42px;
}

.product-channel-title h1 {
    margin: 0;
    color: #111;
    font-size: 38px;
    line-height: 48px;
    font-weight: bold;
}

.product-channel-title span {
    display: block;
    width: 60px;
    height: 10px;
    margin-top: 12px;
    background: #026ABD;
}

.product-channel-title p {
    max-width: 820px;
    margin: 20px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 30px;
}


/* ==============================
   一级分类图文列表
================================= */

.product-category-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-category-card {
    position: relative;
    background: #f7f7f7;
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s ease;
}

.product-category-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.product-category-img {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #fff;
}

.product-category-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .45s ease;
}

.product-category-card:hover .product-category-img img {
    transform: scale(1.06);
}

.product-category-info {
    padding: 24px 24px 28px;
    box-sizing: border-box;
}

.product-category-info h2 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 34px;
    font-weight: bold;
}

.product-category-info h2 a {
    color: #111;
    text-decoration: none;
    transition: all .25s ease;
}

.product-category-card:hover .product-category-info h2 a {
    color: #026ABD;
}

.product-category-info p {
    height: 84px;
    margin: 0 0 22px;
    color: #666;
    font-size: 15px;
    line-height: 28px;
    overflow: hidden;
}

.product-category-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 20px;
    border-radius: 20px;
    background: #026ABD;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s ease;
}

.product-category-more i {
    margin-left: 8px;
    transition: all .25s ease;
}

.product-category-more:hover {
    background: #01569a;
    color: #fff;
}

.product-category-more:hover i {
    transform: translateX(4px);
}


