/* banner */
.banner-section{
    padding-top: 40px;
}

.banner-container {
    background-image: url('/static/images/banner-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 190px);
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* margin: 20px auto; */
}

.banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.banner-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    display: none;
}

.banner-actions .btn {
    padding: 13px 20px;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    margin: -100px auto 0 auto;
    z-index: 3;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid #eee;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.banner-bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-bottom-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 80%;
    background-color: #f5f5f5;
}


.banner-bottom-item .item-left {
    width: 50%;
}

.banner-bottom-item .item-left h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.banner-bottom-item .item-right {
    width: 100%;
    /* background-color: #f5f5f5; */
    /* border-radius: 5px; */
    height: 200px;
    position: relative;
}

.banner-bottom-item .item-right .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1.3px);
}

.banner-bottom-item .item-right .content h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.banner-bottom-item .item-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform .35s ease;
    overflow: hidden;
}

.banner-bottom-item:hover .item-right img {
    transform: scale(1.01);
}

/* product */
.product-section {
    padding: 40px 0;
}

.product-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.product-heading .heading-left {
    max-width: 920px;
}

.product-heading h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    width: auto;
    display: inline-flex;
    padding-left: 10px;
    padding-bottom: 10px;
}

.product-heading h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.product-heading h2::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 99%;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0, 100% 9px, 100% 100%, 0 100%, 0 9px);
}

.product-heading p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* .heading-more {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 12px;
    position: relative;
    padding-left: 16px;
}

.heading-more::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.heading-more:hover {
    text-decoration: underline;
} */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    display: block;
    background-color: #fff;
    border: 1px solid #e7edf3;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0px 10px rgba(18, 51, 88, .12);
    /* border-color: #d5e2ef; */
}

.product-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-body {
    padding: 18px 18px 20px;
}

.product-body h3 {
    font-size: 28px;
    line-height: 1.28;
    color: #111;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #4f5e6e;
    margin-bottom: 14px;
    min-height: 52px;
}

.product-link {
    display: inline-block;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
}

.product-link span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.product-link::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    z-index: -1;
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: left center;
}

.product-card:hover .product-link::after {
    transform: scaleX(1);
}

.product-card:hover .product-link{
    color: #fff;
}

/* .product-link::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
} */

.product-quick-links {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 26px;
}

.product-quick-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 14px;
}

.product-quick-links a::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.product-quick-links a:hover {
    text-decoration: underline;
}

.more-bottom {
    /* margin-top: 15px; */
    text-align: right;
    margin-left: auto;
}
.heading-more {
    display: inline-block;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
    cursor: pointer;
    margin-left: auto;
}

.heading-more span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.heading-more::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    z-index: -1;
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: left center;
}

.heading-more:hover {
    color: #fff;
}

.heading-more:hover::after {
    transform: scaleX(1);
}

@media (max-width: 1200px) {
    .product-body h3 {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .product-heading {
        flex-direction: column;
    }

    .heading-more {
        margin-top: 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-quick-links {
        justify-content: flex-start;
        gap: 16px 24px;
    }
}

@media (max-width: 640px) {
    .product-section {
        padding: 10px 0 48px;
    }

    .product-heading h2 {
        font-size: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-body h3 {
        font-size: 24px;
    }
}

/* empower module */
.empower-section {
    position: relative;
    margin: 10px 0px 40px;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.empower-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 95px;
    bottom: 95px;
    background: linear-gradient(90deg, #143456 0%, #1f4a73 100%);
}

.empower-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0;
}

.empower-card {
    background-color: #fff;
    padding: 60px 60px 60px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    width: min(100%, 480px);
    position: relative;
    z-index: 3;
    border-radius: 10px;
}

.empower-card span {
    font-size: 13px;
    line-height: 1.45;
    color: #66717e;
    margin-bottom: 10px;
    display: inline-block;
}

.empower-card h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #333;
    margin-bottom: 50px;
}

.empower-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #3f4b58;
    margin-bottom: 50px;
}

.empower-btn {
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color .28s ease, transform .28s ease;
    z-index: 0;
    border: 2px solid var(--primary-color);
}

.empower-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 15px;
}

.empower-btn::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transition: all .3s ease;
    z-index: -1;
}
.empower-btn:hover::before{
    transform: scaleX(1);
}

.empower-btn:hover {
    /* background-color: #244b74;
    transform: translateY(-2px); */
    color: var(--primary-color);
}

.empower-visual {
    position: relative;
    z-index: 4;
    flex: 1;
    margin-left: -28px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, .24); */
    border-radius: 10px;
    overflow: hidden;
    margin-top: 120px;
}

.empower-visual img {
    display: block;
    width: 100%;
    /* aspect-ratio: 2.55 / 1; */
    aspect-ratio: 16 / 7.5;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .empower-container {
        align-items: stretch;
    }

    .empower-card h2 {
        font-size: 34px;
    }

    .empower-visual {
        margin-left: -18px;
    }
}

@media (max-width: 900px) {
    .empower-section {
        margin: 0 0 64px;
        min-height: auto;
    }

    .empower-bg {
        top: 22px;
        bottom: 22px;
    }

    .empower-container {
        flex-direction: column;
        gap: 16px;
    }

    .empower-card {
        max-width: 100%;
    }

    .empower-visual {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .empower-section {
        margin-bottom: 48px;
    }

    .empower-card {
        padding: 22px 18px 24px;
    }

    .empower-card h2 {
        font-size: 28px;
    }

    .empower-card p {
        font-size: 14px;
        line-height: 1.75;
    }

    .empower-btn {
        width: 100%;
        text-align: center;
    }
}

/* industry module */
.industry-section {
    padding: 40px 0 10px 0;
}

.industry-heading {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.industry-heading h2 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    width: auto;
    display: inline-flex;
    padding-left: 10px;
    padding-bottom: 10px;
}

.industry-heading h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.industry-heading h2::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 99%;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0, 100% 9px, 100% 100%, 0 100%, 0 9px);
}

.industry-heading p {
    color: #516273;
    font-size: 15px;
    line-height: 1.7;
}

.industry-more {
    margin-left: auto;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    padding-left: 14px;
    font-weight: 500;
}

.industry-more::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.industry-more:hover {
    text-decoration: underline;
}

.industry-band {
    border-radius: 14px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 16px;
    box-shadow: 0 1px 5px rgba(13, 32, 54, .25);
}

.industry-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 430px;
}

.industry-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.industry-visual-image.is-switching {
    animation: industryImageSwitch .45s ease;
}

@keyframes industryImageSwitch {
    0% {
        opacity: .38;
        transform: scale(1.07);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.industry-band:hover .industry-visual img {
    transform: scale(1.03);
}

.industry-visual-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px 16px;
    background: linear-gradient(180deg, rgba(10, 26, 43, 0) 0%, rgba(10, 26, 43, .55) 70%);
}

.industry-visual-overlay span {
    color: rgba(220, 233, 245, .92);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.2;
}

.industry-visual-overlay h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.25;
    margin: 8px 0 6px;
}

.industry-visual-overlay p {
    color: rgba(232, 242, 250, .9);
    font-size: 14px;
    line-height: 1.6;
}

.industry-visual-overlay.is-switching {
    animation: industryTextSwitch .35s ease;
}

@keyframes industryTextSwitch {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.industry-metric {
    border: 1px solid rgba(13, 32, 54, .18);
    background: #fff;
    padding: 22px 18px 20px;
    border-radius: 10px;
    transition: transform .24s ease, background-color .24s ease, border-color .24s ease;
    cursor: pointer;
}

.industry-metric:hover {
    transform: translateY(-4px);
    background: rgba(13, 32, 54, 0.03);
}

.industry-metric.is-active {
    border-color: rgba(20, 73, 121, .4);
    background: rgba(20, 73, 121, .06);
    box-shadow: inset 0 0 0 1px rgba(20, 73, 121, .12);
}

.industry-metric h3 {
    color: var(--primary-color);
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.industry-metric p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    min-height: 50px;
    margin-bottom: 14px;
}

.industry-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tags span {
    border: 1px solid rgba(255, 255, 255, .35);
    color: var(--primary-color);
    font-size: 13px;
    line-height: 1.2;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--section-bg);
}

@media (max-width: 640px) {
    .industry-section {
        padding-bottom: 56px;
    }

    .industry-heading h2 {
        font-size: 30px;
    }

    .industry-band {
        padding: 12px;
    }
}

@media (max-width: 992px) {
    .industry-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .industry-more {
        margin-left: 0;
    }

    .industry-band {
        grid-template-columns: 1fr;
    }

    .industry-visual {
        min-height: 250px;
    }
}

/* news module */
.news-section {
    padding: 40px 0;
}

.news-container {
    /* background: linear-gradient(120deg, #102c49 0%, #143456 52%, #1a3a5c 100%); */
    border-radius: 12px;
    /* padding: 28px 24px 24px; */
    position: relative;
    overflow: hidden;
}

.news-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .18) 1.1px, transparent 1.1px);
    background-size: 16px 16px;
    opacity: .18;
    pointer-events: none;
}

.news-top,
.news-grid {
    position: relative;
    z-index: 2;
}

.news-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.news-heading {
    max-width: 780px;
    position: relative;
}

.news-heading h2 {
    color: var(--primary-color);
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 10px;
    position: relative;
    width: auto;
    display: inline-flex;
    padding-left: 10px;
    padding-bottom: 10px;
}
.news-heading h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.news-heading h2::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 99%;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0, 100% 9px, 100% 100%, 0 100%, 0 9px);
}

.news-heading p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.75;
}

.news-more {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.2;
    padding-left: 14px;
    position: relative;
    margin-top: 12px;
    white-space: nowrap;
    font-weight: 500;
}

.news-more::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.news-more:hover {
    text-decoration: underline;
}

.news-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(160px, 1fr));
    gap: 8px;
}

.news-card {
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e7edf3;
    overflow: hidden;
}

.news-card-main {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.news-card a {
    height: 100%;
    display: flex;
    flex-direction: column;

}

.news-card .news-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.news-card-main .news-image {
    aspect-ratio: 16 / 10.5;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.news-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    background: rgba(15, 47, 79, .78);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    padding: 5px 10px;
    backdrop-filter: blur(3px);
}

.news-card:hover .news-image img {
    transform: scale(1.03);
}

.news-content {
    padding: 10px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.news-card-main .news-content {
    gap: 12px;
}

.news-card-main .news-date {
    font-size: 14px;
}

.news-card-main .news-content h3 {
    font-size: 24px;
}

.news-card-main .news-content p {
    font-size: 15px;
}

.news-card-main .news-tags {
    margin-top: 10px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-date {
    color: #5f7389;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-date::before {
    content: '';
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='5.5' width='17' height='15' rx='2.5' stroke='%235f7389' stroke-width='1.8'/%3E%3Cpath d='M7 3.8V7' stroke='%235f7389' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M17 3.8V7' stroke='%235f7389' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M3.5 10.2H20.5' stroke='%235f7389' stroke-width='1.8'/%3E%3C/svg%3E");
}

.news-content p {
    color: #4f5e6e;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.news-tags span {
    color: #2f4d6d;
    font-size: 12px;
    line-height: 1.2;
    background-color: #f3f7fb;
    border: 1px solid #dce7f2;
    border-radius: 999px;
    padding: 4px 8px;
}

.news-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    margin-left: auto;

    position: absolute;
    right: 10px;
    bottom: 15px;

    border: 1px solid var(--primary-color);
    width: 23px;
    height: 23px;
}

.news-link-icon svg {
    width: 15px;
    height: 15px;
    transition: all .35s ease;
}

.news-card-main .news-link-icon{
    width: 30px;
    height: 30px;
}

.news-card-main .news-link-icon svg {
    width: 20px;
    height: 20px;
}

.news-card:hover .news-link-icon{
    /* transform: translateX(2px) translateY(-2px); */
    background-color: var(--primary-color);
}

.news-card:hover .news-link-icon svg path{
    fill: #fff;
}

.news-content h3 {
    color: #1a1a1a;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
    margin: 0;
    /* 最多兩行 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:not(.news-card-main) .news-content h3 {
    font-size: 16px;
    line-height: 1.45;
}

.news-card:not(.news-card-main) .news-content p {
    font-size: 13px;
}

.news-card:hover h3 {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: 1.8fr 1fr 1fr;
    }

    .news-heading h2 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .news-top {
        flex-direction: column;
        gap: 8px;
    }

    .news-more {
        margin-top: 0;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .news-card-main {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .news-grid>.news-card:nth-child(3),
    .news-grid>.news-card:nth-child(4),
    .news-grid>.news-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding-bottom: 56px;
    }

    .news-container {
        padding: 22px 14px 14px;
        border-radius: 10px;
    }

    .news-heading h2 {
        font-size: 32px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .news-card-main {
        grid-column: auto;
    }

    .news-content h3,
    .news-card .news-content h3 {
        font-size: 16px;
        line-height: 1.45;
    }

    .news-card-main .news-date{
        font-size: 12px;
    }

    .news-card-main .news-content{
        gap: 8px;
    }
    .news-card-main .news-link-icon svg{
        width: 20px;
        height: 20px;
    }

    .news-content p,
    .news-card .news-content p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* company module */
.company-section {
    padding: 40px 0 80px 0;
}

.company-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.company-main {
    background-color: #fff;
    border: 1px solid #e2ebf3;
    border-radius: 12px;
    padding: 35px 35px 32px;
    box-shadow: 0 2px 4px rgba(16, 44, 73, .08);
}

.company-kicker {
    display: inline-block;
    color: #5f7389;
    letter-spacing: .08em;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.company-main h2 {
    color: var(--primary-color);
    font-size: 36px;
    line-height: 1.18;
    margin-bottom: 14px;
}

.company-main p {
    color: #495a6d;
    font-size: 15px;
    line-height: 1.82;
    margin-bottom: 18px;
}

.company-form {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-item span {
    color: #2d4560;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
}

.form-item input,
.form-item select,
.form-item textarea,
.form-item .layui-input,
.form-item .layui-textarea {
    width: 100%;
    border: 1px solid #d5e1ec;
    border-radius: 8px;
    padding: 11px 12px;
    font-family: var(--family-font);
    font-size: 14px;
    line-height: 1.4;
    color: #1d2d40;
    background-color: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus,
.form-item .layui-input:focus,
.form-item .layui-textarea:focus {
    border-color: #9ab6d0;
    box-shadow: 0 0 0 3px rgba(26, 58, 92, .1);
}

.form-item textarea,
.form-item .layui-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-item-full {
    grid-column: 1 / -1;
}

.company-form .layui-form-select {
    width: 100%;
}

.company-form .layui-form-select .layui-input {
    border: 1px solid #d5e1ec;
    border-radius: 8px;
    height: 44px;
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    color: #1d2d40;
}

.company-form .layui-form-selected .layui-input,
.company-form .layui-form-select .layui-input:focus {
    border-color: #9ab6d0 !important;
    box-shadow: 0 0 0 3px rgba(26, 58, 92, .1);
}

.company-form .layui-form-select dl {
    border: 1px solid #d5e1ec;
    border-radius: 8px;
    box-shadow: 0 10px 18px rgba(16, 44, 73, .12);
    margin-top: 6px;
    padding: 0;
}

.company-form .layui-form-select dl dd {
    font-size: 14px;
    color: #22384f;
}

.company-form .layui-form-select dl dd:hover {
    background-color: #edf4fb;
}

.company-form .layui-form-select dl dd.layui-this {
    background-color: var(--primary-color);
    color: #fff;
}

.company-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #bfd0e0;
    color: var(--primary-color);
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 6px;
    transition: all .24s ease;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
}

.company-btn::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transition: all .3s ease;
    z-index: -1;
}



.company-btn:hover::before{
    transform: scaleX(1);
}

.company-btn.primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.company-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(26, 58, 92, .16);
    color: var(--primary-color);
}

.company-side {
    height: 100%;
}

.company-contact {
    background: rgba(20, 73, 121, .06);
    border-radius: 10px;
    padding: 35px 20px;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
}

.company-contact h3 {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 5px;
}

.company-contact>span {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 40px;
    display: inline-block;
}

.company-contact ul {
    margin-bottom: 18px;
}

.company-contact ul li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.company-contact ul li:first-child {
    padding-top: 0;
}

.company-contact ul li span {
    color: rgba(1, 36, 138, 0.9);
    font-size: 13px;
    line-height: 1.3;
    display: inline-block;
    font-weight: 500;
}


.company-contact ul li a,
.company-contact ul li p {
    color: rgba(1, 36, 138, 0.92);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.company-contact ul li a+a {
    margin-top: 2px;
}

.company-contact ul li a {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
}

.company-contact ul li.contact-address a {
    align-items: flex-start;
}

.company-contact ul li a:hover {
    color: var(--primary-color);
}

.company-contact ul li a:hover svg path {
    fill: var(--primary-color);
}

.company-contact ul li a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-contact ul li a span svg {
    width: 20px;
    height: 20px;
    margin-bottom: 1px;
}

.company-contact ul li a svg path {
    fill: rgba(1, 36, 138, 0.92);
}

.contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.contact-tags span {
    border: 1px solid rgba(1, 36, 138, 0.32);
    color: rgba(1, 36, 138, 0.8);
    background: rgba(1, 36, 138, 0.08);
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
    padding: 6px 15px;
}

@media (max-width: 1100px) {
    .company-container {
        grid-template-columns: 1fr;
    }

    .company-main h2 {
        font-size: 34px;
    }

    .company-contact h3 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .company-section {
        padding-bottom: 60px;
    }

    .company-main {
        padding: 24px 16px 22px;
    }

    .company-main h2 {
        font-size: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-item-full {
        grid-column: auto;
    }

    .company-btn {
        width: 100%;
        text-align: center;
    }
}