.hero {
    position: relative;
    height: calc(650 * var(--rpx));
    color: #fff;
    overflow: hidden;
    background: #1a2a4a;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #1a2a4a;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.hero-fg {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
    transform: translateY(calc(-28 * var(--rpx)));
}

.hero-indicators-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(40 * var(--rpx));
    z-index: 3;
}

.hero-card {
    max-width: calc(850 * var(--rpx));
    background: #fff;
    color: var(--text);
    padding: calc(40 * var(--rpx));
}

.hero-card .title {
    font-size: calc(48 * var(--fpx-50));
    font-weight: 700;
    line-height: 1.2;
}

.hero-card .desc {
    margin-top: calc(16 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    line-height: 1.6;
    max-width: calc(780 * var(--rpx));
}

.hero-card .btn-skew {
    margin-top: calc(24 * var(--rpx));
}

.hero-indicators {
    display: flex;
    gap: calc(10 * var(--rpx));
}

.hero-indicator {
    flex: 1;
    min-width: 0;
    border: 0;
    border-top: calc(1 * var(--rpx)) solid #fff;
    background: none;
    color: #fff;
    text-align: left;
    padding: calc(10 * var(--rpx)) 0 0;
    font-size: calc(14 * var(--fpx));
    font-weight: 500;
    cursor: pointer;
}

.hero-indicator.is-active {
    border-top-width: calc(3 * var(--rpx));
    border-top-color: var(--brand);
}

.hero-indicator:hover {
    color: var(--brand);
}

.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(40 * var(--rpx));
}

.sec-products .title,
.sec-solutions .title,
.sec-news .title,
.sec-about .title {
    font-size: calc(48 * var(--fpx-50));
    font-weight: 700;
}

.sec-nav {
    display: flex;
    gap: calc(20 * var(--rpx));
}

.product-prev,
.product-next,
.news-prev,
.news-next {
    width: calc(60 * var(--rpx));
    height: calc(60 * var(--rpx));
    border-radius: 50%;
    background: transparent no-repeat center / calc(20 * var(--rpx)) auto;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.product-prev,
.product-next {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
}

.product-prev,
.news-prev {
    background-image: url("../images/icons/icon_arr_prev.svg?v=1.0");
}

.product-next,
.news-next {
    background-image: url("../images/icons/icon_arr_next.svg?v=1.0");
}

.news-prev,
.news-next {
    border: 0;
    background-color: #fff;
}

.product-prev.swiper-button-disabled,
.product-next.swiper-button-disabled,
.news-prev.swiper-button-disabled,
.news-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

.sec-products {
    padding: calc(100 * var(--rpx)) 0;
    background: #F2F6FB;
}

.product-swiper-wrap {
    overflow: visible;
}

.sec-products .product-swiper,
.sec-products .product-swiper.swiper {
    overflow: visible !important;
}

.product-card {
    width: calc(377.5 * var(--rpx));
    height: calc(350 * var(--rpx));
    margin-right: calc(22 * var(--rpx));
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
}

.product-card .pic {
    height: calc(225 * var(--rpx));
    flex-shrink: 0;
}

.product-card .name {
    font-size: calc(24 * var(--fpx-67));
    font-weight: 700;
    margin: calc(20 * var(--rpx)) calc(16 * var(--rpx)) 0;
}

.product-card .more,
.about-card .more,
.sec-solutions .news .more {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: calc(16 * var(--rpx));
    box-sizing: border-box;
}

.product-card .hover {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: calc(225 * var(--rpx));
    padding: calc(20 * var(--rpx));
    background: rgba(6, 83, 182, 0.65);
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card:hover .hover {
    opacity: 1;
}

.hover-title {
    font-size: calc(18 * var(--fpx));
    font-weight: 700;
    line-height: calc(28em / 18);
}

.hover-line {
    width: 100%;
    height: 1px;
    margin: calc(12 * var(--rpx)) 0;
    background: #fff;
}

.hover-list {
    margin: 0;
    padding: 0;
    font-size: calc(16 * var(--fpx));
    line-height: calc(26em / 16);
}

.hover-list li {
    list-style: none;
}

.hover-list li::before {
    content: "";
    display: inline-block;
    width: calc(4 * var(--rpx));
    height: calc(4 * var(--rpx));
    margin-right: calc(8 * var(--rpx));
    border-radius: 50%;
    background: #fff;
    vertical-align: middle;
}

.sec-solutions {
    padding: calc(90 * var(--rpx)) 0 calc(100 * var(--rpx));
}

.sec-solutions > .wrapper > .title {
    margin-bottom: calc(32 * var(--rpx));
}

.sec-solutions .tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: calc(12 * var(--rpx)) calc(28 * var(--rpx));
    margin-bottom: calc(32 * var(--rpx));
}

.sec-solutions .tab {
    border: 0;
    background: none;
    height: calc(60 * var(--rpx));
    padding: 0 calc(18 * var(--rpx));
    border-radius: calc(60 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: calc(10 * var(--rpx));
}

.sec-solutions .tab img {
    width: calc(30 * var(--rpx));
    height: calc(26 * var(--rpx));
    object-fit: contain;
    flex-shrink: 0;
}

.sec-solutions .tab.is-active {
    background: var(--brand);
    color: #fff;
    font-weight: 500;
}

.sec-solutions .tab.is-active img {
    filter: invert(1);
}

.sec-solutions .panel {
    display: none;
    min-height: calc(525 * var(--rpx));
}

.sec-solutions .panel.is-active {
    display: flex;
    gap: calc(40 * var(--rpx));
}

.sec-solutions .intro {
    display: flex;
    flex: 1;
    min-width: 0;
    min-height: calc(525 * var(--rpx));
    background: #F2F6FB;
}

.sec-solutions .intro .info {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: calc(50 * var(--rpx)) calc(24 * var(--rpx)) calc(50 * var(--rpx)) calc(50 * var(--rpx));
    color: var(--text);
}

.sec-solutions .intro .info::after {
    content: "";
    position: absolute;
    left: calc(54 * var(--rpx));
    top: calc(110 * var(--rpx));
    width: 1px;
    height: calc(210 * var(--rpx));
    background: #C4C4C4;
}

.sec-solutions .intro .pic {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    height: calc(525 * var(--rpx));
}

.sec-solutions .intro .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-solutions .intro .info .name {
    font-size: calc(24 * var(--fpx-67));
    font-weight: 700;
    line-height: calc(36em / 24);
}

.sec-solutions .list {
    margin: calc(22 * var(--rpx)) 0 0;
    padding-left: calc(26 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    line-height: calc(42em / 18);
    color: var(--text-2);
}

.sec-solutions .intro .info .btn-more {
    margin-top: auto;
    width: calc(160 * var(--rpx));
    height: calc(50 * var(--rpx));
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: calc(5 * var(--rpx));
}

.sec-solutions .news {
    width: calc(480 * var(--rpx));
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 calc(16 * var(--rpx)) rgba(0, 0, 0, 0.2);
    padding: 0 0 calc(8 * var(--rpx));
}

.sec-solutions .news .pic {
    height: calc(285 * var(--rpx));
}

.sec-solutions .news .news-title {
    margin: calc(24 * var(--rpx)) calc(24 * var(--rpx)) 0;
    font-size: calc(24 * var(--fpx-67));
    font-weight: 700;
    line-height: 1.4;
}

.sec-solutions .news .more {
    margin-top: auto;
    padding: calc(20 * var(--rpx)) calc(24 * var(--rpx)) calc(16 * var(--rpx));
}

.sec-about {
    padding: calc(100 * var(--rpx)) 0;
    background: #F2F6FB;
}

.sec-about .wrapper {
    display: flex;
    gap: calc(80 * var(--rpx));
    align-items: stretch;
}

.sec-about .info {
    flex: 1;
    min-width: 0;
}

.sec-about .desc {
    margin-top: calc(24 * var(--rpx));
    font-size: calc(24 * var(--fpx-67));
    line-height: calc(42em / 24);
    color: var(--text-2);
    max-width: calc(577 * var(--rpx));
}

.sec-about .points {
    margin: calc(16 * var(--rpx)) 0 0;
    padding-left: calc(27 * var(--rpx));
    list-style: disc;
    list-style-position: outside;
    max-width: calc(414 * var(--rpx));
}

.sec-about .points li {
    font-size: calc(18 * var(--fpx));
    line-height: calc(32em / 18);
    color: var(--text-2);
}

.sec-about .btn-solid {
    margin-top: calc(30 * var(--rpx));
    gap: calc(8 * var(--rpx));
}

.sec-about .btn-solid .arr {
    filter: brightness(0) invert(1);
}

.about-news {
    display: flex;
    gap: calc(40 * var(--rpx));
    flex-shrink: 0;
}

.about-card {
    width: calc(380 * var(--rpx));
    height: calc(465 * var(--rpx));
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 calc(16 * var(--rpx)) rgba(0, 0, 0, 0.2);
}

.about-card .pic {
    height: calc(225 * var(--rpx));
    flex-shrink: 0;
}

.about-card .sub {
    font-size: calc(16 * var(--fpx));
    font-weight: 500;
    margin: calc(20 * var(--rpx)) calc(16 * var(--rpx)) 0;
}

.about-card .name {
    font-size: calc(24 * var(--fpx-67));
    font-weight: 700;
    margin: calc(8 * var(--rpx)) calc(16 * var(--rpx)) 0;
}

.about-card .more {
    margin-top: auto;
    padding: calc(16 * var(--rpx));
}

.sec-news {
    position: relative;
    padding: calc(100 * var(--rpx)) 0 calc(140 * var(--rpx));
}

.news-swiper-wrap {
    position: relative;
    box-sizing: content-box;
    width: var(--wrapper-width);
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    overflow: hidden;
}

.sec-news .news-swiper,
.sec-news .news-swiper.swiper {
    overflow: visible !important;
}

.sec-news .sec-head .btn-more {
    width: calc(160 * var(--rpx));
    height: calc(50 * var(--rpx));
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: calc(5 * var(--rpx));
}

.news-card {
    height: calc(565 * var(--rpx));
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 calc(16 * var(--rpx)) rgba(0, 0, 0, 0.2);
}

.news-card .pic {
    height: calc(280 * var(--rpx));
    flex-shrink: 0;
}

.news-card .body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: calc(24 * var(--rpx));
}

.news-card .tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: calc(30 * var(--rpx));
    padding: 0 calc(12 * var(--rpx));
    border-radius: calc(60 * var(--rpx));
    background: rgba(6, 83, 182, 0.12);
    color: var(--brand);
    font-size: calc(14 * var(--fpx));
}

.news-card .news-title {
    margin-top: calc(16 * var(--rpx));
    font-size: calc(24 * var(--fpx-67));
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
}

.news-card .body .date {
    margin-top: auto;
    font-size: calc(16 * var(--fpx));
    color: var(--muted);
}

.news-card.featured {
    position: relative;
    color: #fff;
}

.news-card.featured .pic {
    height: 100%;
}

.news-card.featured .pic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.news-card.featured .date,
.news-card.featured .news-title {
    position: absolute;
    z-index: 1;
    left: calc(24 * var(--rpx));
}

.news-card.featured .date {
    bottom: calc(120 * var(--rpx));
}

.news-card.featured .date .d {
    display: block;
    font-size: calc(46 * var(--fpx-50));
}

.news-card.featured .date .m {
    font-size: calc(16 * var(--fpx));
}

.news-card.featured .news-title {
    bottom: calc(28 * var(--rpx));
    right: calc(24 * var(--rpx));
    margin: 0;
    color: #fff;
}

.news-nav {
    position: absolute;
    right: 10px;
    top: calc(252 * var(--rpx));
    display: flex;
    gap: calc(12 * var(--rpx));
    z-index: 2;
}

.sec-cta {
    background: #F2F6FB;
    padding: calc(85 * var(--rpx)) 0 calc(70 * var(--rpx));
}

.sec-cta .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(40 * var(--rpx));
}

.sec-cta .title {
    font-size: calc(48 * var(--fpx-50));
    font-weight: 700;
}

.sec-cta .desc {
    margin-top: calc(16 * var(--rpx));
    font-size: calc(24 * var(--fpx-67));
    max-width: calc(944 * var(--rpx));
}

.sec-cta .btn-solid {
    margin-top: calc(32 * var(--rpx));
}

.cta-follow {
    width: calc(200 * var(--rpx));
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-follow .label {
    font-size: calc(20 * var(--fpx));
    margin-top: calc(20 * var(--rpx));
    text-align: center;
}

.cta-follow .qr {
    display: block;
    width: calc(200 * var(--rpx));
    height: calc(200 * var(--rpx));
    object-fit: cover;
    background: var(--pic);
}
