.jlfw-page {
    background: #f5f8fc;
}

.jlfw-banner {
    margin-bottom: 0;
}

.jlfw-landing,
.project-panel,
.service-list-panel,
.service-article {
    margin: 20px 0 70px;
}

.jlfw-landing {
    position: relative;
    overflow: hidden;
    padding: 54px 50px 64px;
    border: 1px solid #e8eef6;
    background:
        linear-gradient(135deg, rgba(0, 91, 172, 0.04), transparent 38%),
        radial-gradient(circle at 90% 8%, rgba(29, 163, 207, 0.09), transparent 24%),
        #f8fafc;
}

.jlfw-landing::after {
    position: absolute;
    right: -100px;
    bottom: -210px;
    width: 700px;
    height: 380px;
    border: 1px solid rgba(0, 91, 172, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(0, 91, 172, 0.025), 0 0 0 70px rgba(0, 91, 172, 0.018);
    content: "";
}

.jlfw-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
}

.jlfw-heading p {
    color: #1d2d42;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.jlfw-heading span {
    display: block;
    margin-top: 7px;
    color: #7d8ca0;
    font-size: 13px;
    letter-spacing: 4px;
}

.jlfw-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 34px;
}

.jlfw-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 146px;
    padding: 28px 32px;
    overflow: hidden;
    border: 1px solid #edf1f6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(29, 62, 99, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.jlfw-card:hover {
    border-color: #9dc9ee;
    box-shadow: 0 18px 42px rgba(0, 91, 172, 0.14);
    text-decoration: none;
    transform: translateY(-4px);
}

.jlfw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-right: 26px;
    flex: 0 0 auto;
    border-radius: 18px;
    background: #edf7ff;
}

.jlfw-icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: #1e96e8;
    stroke-width: 3.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.jlfw-card-text {
    display: block;
}

.jlfw-card-text strong {
    display: block;
    color: #1c2c3d;
    font-size: 21px;
    font-weight: normal;
}

.jlfw-card-text em {
    display: block;
    margin-top: 9px;
    color: #647489;
    font-size: 14px;
}

.jlfw-card > i {
    position: absolute;
    right: 18px;
    bottom: 7px;
    color: #f0f4f8;
    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: bold;
}

.project-panel,
.service-list-panel,
.service-article {
    padding: 44px 48px 54px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(31, 63, 97, 0.06);
}

.project-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8eef5;
}

.project-title span,
.service-list-title span {
    color: #168edb;
    font-size: 12px;
    letter-spacing: 3px;
}

.project-title h1,
.service-list-title h1 {
    margin-top: 7px;
    color: #1c2d40;
    font-size: 28px;
}

.project-title p {
    color: #78879a;
}

.project-search {
    display: flex;
    width: 720px;
    max-width: 100%;
    height: 52px;
    margin: 32px auto 24px;
    border: 2px solid #168edb;
    border-radius: 4px;
    overflow: hidden;
}

.project-search input {
    width: calc(100% - 128px);
    height: 48px;
    padding: 0 18px;
    border: 0;
    font-size: 15px;
}

.project-search button {
    width: 128px;
    color: #fff;
    background: #168edb;
    font-size: 16px;
    cursor: pointer;
}

.department-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.department-filter a {
    padding: 7px 15px;
    border: 1px solid #dce6f0;
    border-radius: 18px;
    color: #586a7e;
    background: #f7f9fc;
}

.department-filter a:hover,
.department-filter a.active {
    color: #fff;
    border-color: #168edb;
    background: #168edb;
    text-decoration: none;
}

.project-result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.project-result-head h2 {
    color: #203145;
    font-size: 21px;
}

.project-result-head span {
    color: #7a899a;
}

.project-table-wrap {
    width: 100%;
    overflow-x: hidden;
    border: 1px solid #dce5ef;
}

.project-table {
    width: 100%;
    table-layout: fixed;
}

.project-table th {
    padding: 15px 10px;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    background: #096bb6;
    font-size: 14px;
    font-weight: normal;
}

.project-table th:nth-child(1) { width: 14%; }
.project-table th:nth-child(2) { width: 17%; }
.project-table th:nth-child(3) { width: 16%; }
.project-table th:nth-child(4) { width: 9%; }
.project-table th:nth-child(5) { width: 10%; }
.project-table th:nth-child(6) { width: 9%; }
.project-table th:nth-child(7) { width: 11%; }
.project-table th:nth-child(8) { width: 14%; }

.project-table td {
    padding: 13px 12px;
    border-right: 1px solid #e4ebf2;
    border-bottom: 1px solid #e4ebf2;
    color: #45566a;
    line-height: 1.65;
    vertical-align: middle;
    word-break: break-all;
}

.project-table tbody tr:nth-child(even) {
    background: #f4f9fd;
}

.project-table tbody tr:hover {
    background: #eaf5fd;
}

.project-table .project-name {
    color: #174e7d;
    font-weight: bold;
}

.project-table .project-empty {
    padding: 45px;
    text-align: center;
}

.service-list-title {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8eef5;
}

.service-doc-list li {
    border-bottom: 1px solid #edf1f5;
}

.service-doc-list li a {
    display: flex;
    align-items: center;
    padding: 22px 16px;
    transition: background 0.2s ease;
}

.service-doc-list li a:hover {
    background: #f5f9fd;
    text-decoration: none;
}

.service-doc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-right: 18px;
    border-radius: 8px;
    color: #168edb;
    background: #eaf6ff;
    font-size: 11px;
    font-weight: bold;
}

.service-doc-info {
    flex: 1;
}

.service-doc-info strong {
    display: block;
    color: #26384c;
    font-size: 17px;
    font-weight: normal;
}

.service-doc-info em {
    display: block;
    margin-top: 7px;
    color: #95a0ad;
    font-size: 13px;
}

.service-doc-list li a > i {
    color: #168edb;
}

.service-empty {
    padding: 55px 0;
    color: #8491a0;
    text-align: center;
}

.service-article {
    color: #3b4b5e;
}

.service-article-head {
    padding-bottom: 28px;
    border-bottom: 1px solid #e8eef5;
    text-align: center;
}

.service-article-head h1 {
    color: #203145;
    font-size: 28px;
    line-height: 1.5;
}

.service-article-head p {
    margin-top: 13px;
    color: #929daa;
}

.service-article-content {
    padding: 36px 25px 10px;
    font-size: 16px;
    line-height: 2;
}

.service-article-content img {
    max-width: 100%;
    height: auto !important;
}

.service-article-content a {
    color: #0879c9;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .jlfw-landing,
    .project-panel,
    .service-list-panel,
    .service-article {
        margin: 12px 0 30px;
        padding: 24px 14px 30px;
    }

    .jlfw-heading {
        margin-bottom: 20px;
    }

    .jlfw-heading p {
        font-size: 23px;
    }

    .jlfw-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .jlfw-card {
        min-height: 108px;
        padding: 18px;
    }

    .jlfw-icon {
        width: 62px;
        height: 62px;
        margin-right: 17px;
        border-radius: 14px;
    }

    .jlfw-icon svg {
        width: 44px;
        height: 44px;
    }

    .jlfw-card-text strong {
        font-size: 18px;
    }

    .jlfw-card-text em {
        font-size: 13px;
    }

    .project-title {
        display: block;
    }

    .project-title h1,
    .service-list-title h1 {
        font-size: 23px;
    }

    .project-title p {
        margin-top: 12px;
        line-height: 1.7;
    }

    .project-search {
        height: 46px;
        margin-top: 24px;
    }

    .project-search input {
        width: calc(100% - 96px);
        height: 42px;
    }

    .project-search button {
        width: 96px;
        font-size: 14px;
    }

    .department-filter {
        justify-content: flex-start;
        margin-bottom: 25px;
    }

    .department-filter a {
        padding: 6px 11px;
        font-size: 12px;
    }

    .project-table-wrap {
        overflow-x: auto;
    }

    .project-table {
        min-width: 1250px;
    }

    .service-doc-list li a {
        padding: 17px 5px;
    }

    .service-doc-info strong {
        font-size: 15px;
        line-height: 1.6;
    }

    .service-doc-list li a > i {
        display: none;
    }

    .service-article-head h1 {
        font-size: 21px;
    }

    .service-article-content {
        padding: 24px 4px 5px;
        font-size: 15px;
        line-height: 1.85;
    }
}
