/* 技术中心列表页样式 */

.banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 31, 45, 0.45) 0%, rgba(17, 31, 45, 0.18) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
}

.banner-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.banner-desc {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 144px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #109afc 0%, #60b83c 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(16, 154, 252, 0.22);
}

.banner-btn:hover {
    transform: translateY(-2px);
}

.technology-list-section {
    padding: 58px 0 84px;
    background: #fff;
}

.technology-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.technology-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    min-height: 188px;
    background: #f7f9fc;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.technology-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
    border-color: rgba(16, 154, 252, 0.24);
}

.technology-card__media {
    position: relative;
    min-height: 188px;
    overflow: hidden;
    background: #dde7f1;
}

.technology-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 154, 252, 0.12) 0%, rgba(17, 31, 45, 0.06) 100%);
}

.technology-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.technology-card:hover .technology-card__media img {
    transform: scale(1.04);
}

.technology-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px 34px;
    background: #fbfcfe;
    transition: background-color 0.28s ease, color 0.28s ease;
}

.technology-card:hover .technology-card__body {
    background: #119af9;
}

.technology-card__tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: #7c8a9b;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.technology-card__tag::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
    opacity: 0.6;
}

.technology-card:hover .technology-card__tag,
.technology-card:hover .technology-card__title,
.technology-card:hover .technology-card__title a,
.technology-card:hover .technology-card__excerpt,
.technology-card:hover .technology-card__link {
    color: #fff;
}

.technology-card__title {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
    color: #1490f5;
}

.technology-card__excerpt {
    font-size: 14px;
    line-height: 1.9;
    color: #78879a;
}

.technology-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #1490f5;
    font-size: 14px;
    font-weight: 600;
}

.technology-card__link::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    gap: 6px;
}

.pagination .page-btn,
.pagination .page-num,
.pagination .page-dot,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #cfe4f9;
    background: #fff;
    color: #98a6b5;
    font-size: 12px;
    line-height: 1;
    transition: all 0.25s ease;
    border-radius: 2px;
}

.pagination .page-num,
.pagination .page-dot,
.pagination span {
    min-width: 24px;
}

.pagination .page-btn {
    min-width: 32px;
    padding: 0 10px;
    background: #109afc;
    border-color: #109afc;
    color: #fff;
}

.pagination a:hover {
    border-color: #109afc;
    background: #109afc;
    color: #fff;
}

.pagination .page-num-current,
.pagination .page-num.active {
    background: #109afc;
    border-color: #109afc;
    color: #fff;
}

.pagination .page-btn[href="javascript:;"] {
    opacity: 0.88;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .banner {
        height: 186px;
    }

    .banner-content {
        padding: 0 16px;
    }

    .banner-title {
        font-size: 22px;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .banner-desc {
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.7;
    }

    .banner-btn {
        min-width: 112px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .technology-list-section {
        padding: 18px 0 34px;
    }

    .technology-list {
        gap: 14px;
    }

    .technology-card {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 0;
    }

    .technology-card__media {
        min-height: 172px;
    }

    .technology-card__body {
        padding: 14px 16px 18px;
        gap: 10px;
    }

    .technology-card__title {
        font-size: 18px;
        line-height: 1.45;
    }

    .technology-card__excerpt {
        font-size: 12px;
        line-height: 1.9;
    }

    .technology-card__link {
        font-size: 12px;
    }

    .pagination {
        margin-top: 18px;
    }

    .pagination .page-btn,
    .pagination .page-num,
    .pagination .page-dot,
    .pagination span {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .pagination .page-btn {
        min-width: 30px;
        padding: 0 8px;
    }
}
