/* ==============================
   解决方案频道页
   Theme: #026ABD
================================= */

.solution-channel-page {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

.solution-channel-head {
    margin-bottom: 42px;
}

.solution-channel-title h1 {
    margin: 0;
    color: #111;
    font-size: 38px;
    line-height: 48px;
    font-weight: bold;
}

.solution-channel-title span {
    display: block;
    width: 60px;
    height: 10px;
    margin-top: 12px;
    background: #026ABD;
}

.solution-channel-title p {
    margin: 20px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 30px;
}

/* 列表：一排4个 */
.solution-channel-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.solution-channel-item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 420px;
    border-radius: 18px;
    background: #071b3f;
    text-decoration: none;
    transition: all .3s ease;
}

.solution-channel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,.12);
}

.solution-channel-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.solution-channel-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .45s ease;
}

.solution-channel-item:hover .solution-channel-img img {
    transform: scale(1.06);
}

.solution-channel-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58%;
    background: linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.48), rgba(0,0,0,0));
    z-index: 1;
}

.solution-channel-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.solution-channel-info h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
}

.solution-channel-info p {
    height: 72px;
    margin: 0 0 18px;
    overflow: hidden;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 24px;
}

.solution-channel-more {
    display: inline-flex;
    align-items: center;
    color: #026ABD;
    font-size: 14px;
    line-height: 24px;
    transition: all .25s ease;
}

.solution-channel-more i {
    margin-left: 8px;
    transition: all .25s ease;
}

.solution-channel-item:hover .solution-channel-more {
    color: #fff;
}

.solution-channel-item:hover .solution-channel-more i {
    transform: translateX(4px);
}