/* ==============================
   FAQ Channel Page
   Future Power Color
================================= */

.faq-channel-page {
    padding: 40px 0 55px;
}

/* 标题 */
.faq-channel-head {
    max-width: 860px;
    margin-bottom: 28px;
}

.faq-channel-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #168a3a;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.faq-channel-head h1 {
    margin: 0 0 14px;
    color: #14284b;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

.faq-channel-head p {
    margin: 0;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.75;
}

/* 网格 */
.faq-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* 卡片 */
.faq-channel-item {
    position: relative;
    min-height: 220px;
    padding: 30px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbf8 100%);
    border: 1px solid #e7f2ee;
    box-shadow: 0 10px 30px rgba(16, 36, 58, .08);
    text-decoration: none;
    overflow: hidden;
    transition: all .35s ease;
}

.faq-channel-item::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(55, 179, 74, .08);
    transition: all .35s ease;
}

.faq-channel-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
    opacity: 0;
    transition: all .35s ease;
}

.faq-channel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(16, 155, 215, .14);
    border-color: rgba(16, 155, 215, .26);
}

.faq-channel-item:hover::before {
    transform: scale(1.2);
    background: rgba(16, 155, 215, .10);
}

.faq-channel-item:hover::after {
    opacity: 1;
}

/* 图标 */
.faq-channel-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 26px;
    border-radius: 20px;
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(55, 179, 74, .22);
}

.faq-channel-icon i {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

/* 文字 */
.faq-channel-info h2 {
    margin: 0 0 20px;
    color: #14284b;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 800;
}

.faq-channel-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #168a3a;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    transition: all .3s ease;
}

.faq-channel-info span i {
    font-size: 16px;
    color: #37b34a;
}

.faq-channel-item:hover .faq-channel-info span {
    color: #109bd7;
    transform: translateX(3px);
}

.faq-channel-item:hover .faq-channel-info span i {
    color: #109bd7;
}

/* ==============================
   Tablet
================================= */

@media (max-width: 992px) {
    .faq-channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-channel-info h2 {
        font-size: 22px;
    }
}

/* ==============================
   Mobile
================================= */

@media (max-width: 768px) {
    .faq-channel-page {
        padding: 30px 0 42px;
    }

    .faq-channel-head {
        margin-bottom: 22px;
    }

    .faq-channel-head h1 {
        font-size: 28px;
    }

    .faq-channel-head p {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-channel-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-channel-item {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .faq-channel-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .faq-channel-icon i {
        font-size: 24px;
    }

    .faq-channel-info h2 {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .faq-channel-info span {
        font-size: 14px;
    }
}