﻿@import url("./common.css");

/* Banner轮播 */
.workday-hero {
    padding: 80px 0 60px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.workday-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
}

.workday-hero-left {
    flex: 0 0 40%;
    max-width: none;
    padding-top: 0;
}

.workday-hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.5;
    color: #121218;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

/* 渐变文字效果 - 蓝色主题 */
.gradient-text {
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            rgb(23, 183, 255) 50%,
            rgb(0, 183, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workday-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #61646b;
    margin: 0 0 32px;
}

.workday-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    color: #121218;
    border: 2px solid #03A9F4;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-dark:hover {
    background: rgba(0, 0, 0, 0.05);
}

.workday-link {
    color: #121218;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.workday-link:hover {
    color: #61646b;
}

.workday-hero-right {
    flex: 1;
    max-width: 60%;
    min-width: 500px;
}

/* 轮播组件 */
.workday-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    will-change: transform, opacity;
}

/* 位置类 */
.carousel-slide.slide-far-left {
    width: 47%;
    height: 90%;
    z-index: 1;
    transform: translateX(-54%) scale(0.8);
    opacity: 0.4;
}

.carousel-slide.slide-near-left {
    width: 51%;
    height: 95%;
    z-index: 5;
    transform: translateX(-28%) scale(0.9);
    opacity: 0.6;
}

.carousel-slide.slide-active {
    width: 100%;
    height: 100%;
    z-index: 10;
    transform: translateX(0) scale(1);
    opacity: 1;
    border: 2px solid var(--color-primary);
    cursor: default;
}

.carousel-slide.slide-near-right {
    width: 51%;
    height: 95%;
    z-index: 5;
    transform: translateX(28%) scale(0.9);
    opacity: 0.6;
}

.carousel-slide.slide-far-right {
    width: 47%;
    height: 90%;
    z-index: 1;
    transform: translateX(54%) scale(0.8);
    opacity: 0.4;
}

.carousel-slide.slide-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    z-index: 0;
}

/* 3卡片模式 */
.carousel-slide.left {
    width: 85%;
    height: 85%;
    transform: translateX(-30%) scale(0.9);
    z-index: 5;
    opacity: 0.7;
}

.carousel-slide.right {
    width: 85%;
    height: 85%;
    transform: translateX(30%) scale(0.9);
    z-index: 5;
    opacity: 0.7;
}

.carousel-slide.active {
    width: 85%;
    height: 100%;
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
    border: 2px solid var(--color-primary);
    cursor: default;
}

.carousel-slide.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    z-index: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* 文字覆盖层 */
.caption-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    max-width: 500px;
    color: #fff;
    display: flex;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.carousel-slide.slide-active .caption-overlay {
    opacity: 1;
}

.caption-content {
    flex: 1;
}

.caption-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.caption-text {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.arrow-button {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.arrow-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.arrow-button svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}


.workday-carousel[data-show-controls="false"] video::-webkit-media-controls {
    display: none !important;
}

.workday-carousel[data-show-controls="false"] video {
    pointer-events: none;
}

/* 分页?- 进度条式 */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 0;
}

.pagination-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.pagination-dot {
    width: 48px;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.pagination-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pagination-dot.active::after {
    animation: paginationProgress 5s linear forwards;
}

.workday-carousel.paused .pagination-dot.active::after {
    animation-play-state: paused;
}

@keyframes paginationProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.pagination-pause-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 0;
    transition: background 0.2s ease;
}

.pagination-pause-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.pagination-pause-btn svg {
    fill: currentColor;
}

.pagination-pause-btn .play-icon {
    display: none;
}

.workday-carousel.paused .pagination-pause-btn .pause-icon {
    display: none;
}

.workday-carousel.paused .pagination-pause-btn .play-icon {
    display: block;
}

/* Banner轮播 end */

/* 手风琴产品区 */
.products-section {
    padding: 30px 0;
    background: transparent;
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.products-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0 0 16px;
}

.products-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin: 0;
}

.products-grid {
    display: flex;
    gap: 12px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-card.expanded {
    flex: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.product-card .card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    padding-bottom: 40px;
    /* 增加底部填充 */
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.product-card .card-desc {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0 26px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    /* 统一改为向下偏移，展开时上移 */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card .card-links {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    /* 统一改为向下偏移，展开时上移 */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.product-card .card-links li {
    margin-bottom: 8px;
}

.product-card .card-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-card .card-links a:hover {
    opacity: 0.8;
}

/* 高亮信息框样式 (玻璃拟态 + 霓虹边框) */
.card-highlight {
    margin-top: auto;
    background: rgba(106, 106, 106, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 0 15px rgba(255, 150, 0, 0.3);
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
    z-index: 1;
}

.card-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6417 0%, #ff7144 16.67%, #ff949a 33.33%, #ffa4ab 50%, #ffbb83 66.67%, #ffc765 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.highlight-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.product-card .expand-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.product-card:not(.expanded):hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-card:not(.expanded) {
    opacity: 0.9;
}

.product-card.expanded::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.product-card.expanded .expand-btn {
    opacity: 0;
    visibility: hidden;
}

.product-card.expanded .card-desc,
.product-card.expanded .card-links,
.product-card.expanded .card-highlight {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 响应式适配 */
@media (max-width: 992px) {
    .products-section {
        padding: 30px 0;
    }

    .products-header {
        margin-bottom: 30px;
    }

    .products-title {
        font-size: 28px;
    }

    .products-subtitle {
        font-size: 15px;
    }

    .products-grid {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .product-card {
        height: 280px;
    }

    .product-card .card-content {
        padding: 20px;
    }

    .product-card .card-title {
        font-size: 24px;
    }

    .product-card .card-desc {
        font-size: 14px;
    }

    .product-card .card-desc,
    .product-card .card-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .products-title {
        font-size: 24px;
    }

    .products-grid {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .product-card,
    .product-card.expanded {
        height: 350px;
        flex: none !important;
        width: 100%;
    }

    .product-card .card-title {
        font-size: 20px;
    }

    .product-card .card-content {
        padding: 20px;
    }

    .product-card .card-desc {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        font-size: 13px;
        margin-bottom: 12px;
    }

    .product-card .card-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .product-card .expand-btn {
        display: none;
    }



.product-card .card-bg {
width: auto;
top: 50%;
    left: 15%;
    transform: translate(0, -50%);
}
}

/* 手风琴产品区 end */

/* 热门产品区 */
.sec-featured.bg-featured-panel {
    background: #fafafa;
    padding: 80px 0 !important;
}

/* 标题区 */
.sec-hd {
    margin-bottom: 30px;
    z-index: 9;
}

.sec-hd .g-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-hd .col-l ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sec-hd .col-l li {
    margin-right: 60px;
}

.sec-hd .col-l li a {
    font-size: 30px;
    line-height: 1.7;
    color: #b1b1b1;
    display: block;
    transition: all 0s;
}

.sec-hd .col-l li:hover a {
    color: #333;
}

.sec-hd .col-l li.on a {
    font-size: 43px;
    color: #333;
}

.sec-hd .btn-link {
    width: 114px;
    border-radius: 22px;
    display: block;
    text-align: center;
    border: 1px solid var(--color-primary);
    box-sizing: border-box;
}

.sec-hd .btn-link span {
    font-size: 14px;
    line-height: 44px;
    color: var(--color-primary);
    display: inline-block;
    background: url(/skin/images/prev-2.png) no-repeat right center;
    padding-right: 36px;
}

/* ===== sec-tit 标题样式 ===== */
.sec-tit {
    color: #333;
    font-weight: bold;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 60px;
    background-size: 45px auto !important;
    font-size: 22px;
    line-height: 60px;
}

.sec-tit.tit-icon-product {
    background: url(/skin/images/mlico1.png) no-repeat left center;
}

.sec-tit a {
    width: 114px;
    border-radius: 26px;
    display: block;
    text-align: center;
    border: 1px solid var(--color-primary);
    box-sizing: border-box;
    float: right;
    line-height: 44px;
}

.sec-tit a i {
    font-size: 14px;
    line-height: 44px;
    color: var(--color-primary);
    display: inline-block;
    background: url(/skin/images/prev-2.png) no-repeat right center;
    padding-right: 36px;
}

.sec-tit a:hover {
    background: var(--color-primary);
    color: #fff;
}

.sec-tit a:hover i {
    background: url(/skin/images/prev-3.png) no-repeat right center;
    color: #fff;
}



.prod-slider {
    margin-top: 30px;
    position: relative;
    padding-bottom: 66px;
}

.prod-slider .slider-box {
    overflow: hidden;
}

.prod-slider .slider-box li {
    border-radius: 20px;
    overflow: hidden;
}

.prod-slider .slider-box li a {
    display: block;
}

.prod-slider .slider-box li:hover a {
    background: #fff;
}

.prod-slider .slider-box li .img-wrap {
    height: 263px;
    position: relative;
}

.prod-slider .slider-box li .img-wrap i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    border: 2px dashed #afd4fe;
    opacity: 0;
}

.prod-slider .slider-box li .img-wrap img {
    max-width: 65%;
    max-height: 65%;
    height: 100%;
    width: 100%;
    z-index: 11;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    object-fit: contain;
}

.prod-slider .slider-box li .img-wrap .tag {
    position: absolute;
    right: 5%;
    top: 5%;
    z-index: 11;
    left: auto;
    bottom: auto;
    height: auto !important;
    background: url(/skin/images/wwico1.png) no-repeat center/100% 100%;
    width: 96px;
    font-size: 15px;
    line-height: 38px;
    color: #000;
    text-align: center;
    box-sizing: border-box;
}

.prod-slider .slider-box li h3 {
    font-size: 18px;
    color: #333;
    text-align: center;
}

.prod-slider .slider-box li .txt-box {
    padding: 15px 20px 10px;
    height: 162px;
    box-sizing: border-box;
    margin-top: 15px;
}

.prod-slider .slider-box li .txt-box p {
    font-size: 14px;
    color: #fff;
    line-height: 23px;
    height: 92px;
    overflow: hidden;
}

.prod-slider .slider-box li .txt-box .link-detail {
    font-size: 14px;
    color: #fff;
    padding-right: 22px;
    background: url(/skin/images/mlico10.png) no-repeat right center;
    background-size: 22px auto;
    margin-top: 10px;
    margin-left: 10px;
    display: inline-block;
}

.prod-slider .slider-box li .txt-box .btn-detail {
    width: 115px;
    height: 42.px;
    border: 1px solid #adc5e4;
    padding: 0 18px;
    border-radius: 22px;
    box-sizing: border-box;
    margin: 15px auto 0;
}

.prod-slider .slider-box li .txt-box .btn-detail i {
    color: var(--color-primary);
    font-size: 14px;
    line-height: 42px;
    background: url(/skin/images/mlico11.png) no-repeat right center;
    display: block;
}

.prod-slider .slider-box li .txt-box p,
.prod-slider .slider-box li .txt-box .link-detail {
    display: none;
}

.prod-slider .slider-box li:hover .txt-box {
    background: linear-gradient(to right, #1872f7, #74b6fe);
}

.prod-slider .slider-box li:hover .txt-box p {
    display: block;
}

.prod-slider .slider-box li:hover .txt-box .link-detail {
    display: inline-block;
}

.prod-slider .slider-box li:hover .txt-box .btn-detail {
    display: none;
}

.prod-slider .slider-box li:hover .img-wrap i {
    -webkit-animation: rosas 1.5s 0s linear infinite;
    animation: rosas 1.5s 0s linear infinite;
}

.prod-slider .slider-box li:hover .img-wrap i:nth-child(2) {
    -webkit-animation: rosas 1.5s -.5s linear infinite;
    animation: rosas 1.5s -.5s linear infinite;
}

.prod-slider .slider-box li:hover .img-wrap i:nth-child(3) {
    -webkit-animation: rosas 1.5s -1s linear infinite;
    animation: rosas 1.5s -1s linear infinite;
}

@-webkit-keyframes rosas {
    0% {
        -webkit-transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(3);
        opacity: 0;
    }
}

@-moz-keyframes rosas {
    0% {
        -moz-transform: scale(0);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(3);
        opacity: 0;
    }
}

.prod-slider .arrow-prev,
.prod-slider .arrow-next {
    background: url(/skin/images/mlico12.png) no-repeat center #fff;
    cursor: pointer;
    width: 55px;
    height: 55px;
    box-shadow: 0 0 10px 0 rgba(80, 80, 80, 0.2);
    position: absolute;
    left: -70px;
    margin-top: -101px;
    top: 50%;
    z-index: 1;
    border-radius: 50%;
}

.prod-slider .arrow-next {
    left: auto;
    right: -70px;
    transform: rotate(180deg);
}

.prod-slider .arrow-prev:hover,
.prod-slider .arrow-next:hover {
    background: url(/skin/images/mlico11-1.png) no-repeat center #2350a2;
}

.prod-slider .dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    z-index: 11;
}

.prod-slider .dots span {
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.12);
    opacity: 1;
    vertical-align: middle;
}

.prod-slider .dots .swiper-pagination-bullet-active {
    background: #166ce8;
    width: 10px;
    height: 10px;
}

/* 热门产品区 end */

/* 软件服务区 */
.sec-category {
    padding: 33px 0 90px;
    padding-top: 60px;
}

.sec-category>.g-wrap:nth-child(2) {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: top;
}

.sec-category .col-l {
    width: 1185px;
}

.sec-category .col-r {
    width: calc(100% - 1200px);
}

.sec-category h3 a {
    font-size: 32px;
    line-height: 2;
    display: block;
    color: #333;
    background: url(/skin/images/xc6.png) no-repeat right center;
    transition: all 0.3s;
}

.sec-category h3 a:hover {
    background-position: right 5px center !important;
}

.sec-category .col-l li {
    float: left;
    width: calc((100% - 17px) / 2);
    margin-bottom: 20px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    padding: 44px 40px 0 46px;
    box-sizing: border-box;
}

.sec-category .col-l li:nth-child(2n) {
    float: right;
}

.sec-category .col-l li .info-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.sec-category .col-l li dd a {
    font-size: 17px;
    line-height: 42px;
    color: #333;
    transition: all 0s;
    display: inline-block;
    position: relative;
}

.sec-category .col-l li .info-row dl {
    width: 210px;
}

.sec-category .col-l li .img-area {
    position: relative;
    height: 235px;
    width: calc(100% - 230px);
}

.sec-category .col-r .img-area img {
    display: block;
    margin: 60px auto 0;
    max-width: 100%;
}

.sec-category .col-r .img-area {
    height: 405px;
    overflow: hidden;
}

.sec-category .feat-card {
    height: 400px;
    border-radius: 20px;
    padding: 44px 40px 0 46px;
    box-sizing: border-box;
}

.sec-category .feat-card .info-row {
    display: flex;
    justify-content: space-between;
}

/* ----- Merged sec-category Styles ----- */
.sec-category .col-l li .img-area img {
    display: none;
    object-fit: contain;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    top: 0;
    z-index: 1;
    margin: 0 auto;
}

.sec-category .col-l li .img-area img:first-child {
    display: block;
}

.sec-category .col-r .feat-card {
    background: url(/skin/images/qm91.png) no-repeat center/cover;
    height: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 38px;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
}

.sec-category .col-r .feat-card:hover {
    background: url(/skin/images/w3.jpg) no-repeat center/cover;
}

.sec-category .feat-card h3 a {
    color: #333;
    transition: all 0.3s;
}

.sec-category .feat-card dl {
    margin-top: auto;
    padding-bottom: 20px;
}

.sec-category .feat-card dd {
    width: 50%;
    float: left;
}

.sec-category .feat-card dd a {
    font-size: 18px;
    line-height: 50px;
    color: #666;
    transition: all 0s;
    display: block;
}

.sec-category .feat-card .img-area {
    flex: 1;
    margin-top: 20px;
    position: relative;
    width: 100%;
}

.sec-category .feat-card .img-area img {
    display: block;
    object-fit: contain;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    top: 0;
    z-index: 1;
    margin: 0 auto;
}

.sec-category .col-l li:nth-child(1) {
    background: url(/skin/images/w2.jpg) no-repeat center/cover;
}

.sec-category .col-l li:nth-child(2) {
    background: url(/skin/images/qm90.png) no-repeat center/cover;
}

.sec-category .col-l li:nth-child(3) {
    background: url(/skin/images/qm91.png) no-repeat center/cover;
}

.sec-category .col-l li:nth-child(4) {
    background: url(/skin/images/qm92.png) no-repeat center/cover;
}

.sec-category .col-l li:hover {
    background-image: linear-gradient(to right, #1973f7, #519dfb, #73b5fe);
}

.sec-category .col-r .feat-card:hover dd a,
.sec-category .col-r .feat-card:hover h3 a,
.sec-category .col-l li:hover dd a,
.sec-category .col-l li:hover h3 a {
    color: var(--color-white);
}

.sec-category dd a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: 1px;
    background: #fff;
    transition: all .3s;
    width: 0;
}

.sec-category .feat-card dd a {
    position: relative;
    display: inline-block;
}

.sec-category dd a:hover:before {
    width: 100%;
}

/* 软件服务区 end */

/* 生态联盟区 */
.sec-solution.bg-solution-panel {
    background: url(/skin/images/w5.jpg) no-repeat center/cover;
}

.sec-solution .sec-hd {
    padding: 38px 0 19px;
}

.sec-solution .mod-box {
    margin-top: 28px;
}

.sec-solution .nav-col {
    float: left;
    width: 370px;
}

.sec-solution .cont-col {
    float: right;
    width: calc(100% - 380px);
}

.sec-solution .nav-col ul {
    position: relative;
    padding-top: 23px;
    padding-bottom: 6px;
}

.sec-solution .nav-col ul::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border-left: 1px dashed #a3b9dc;
    height: 100%;
}

.sec-solution .nav-col li {
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 19px;
}

.sec-solution .nav-col li h3 {
    position: relative;
    padding-left: 80px;
}

.sec-solution .nav-col li h3 span {
    font-size: 18px;
    line-height: 2;
    color: #333;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

.sec-solution .nav-col li h3 span::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    z-index: 1;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s;
}

.sec-solution .nav-col li.on h3 span::before,
.sec-solution .nav-col li:hover h3 span::before {
    width: 100%;
}

.sec-solution .nav-col li h3::before {
    position: absolute;
    left: -4px;
    border-radius: 50%;
    top: 50%;
    z-index: 1;
    background: url(/skin/images/qm89.png) no-repeat center/contain;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    display: block;
    content: "";
    transition: all 0.3s;
}

.sec-solution .nav-col li.on h3::before {
    background: url(/skin/images/xc14.png) no-repeat left center/contain;
    width: 74px;
    height: 74px;
    margin-top: -36px;
    left: -36px;
}

.sec-solution .nav-col li:hover h3 span {
    color: var(--color-primary-dark);
    font-weight: bold;
}

.sec-solution .nav-col li.on h3 span {
    font-size: 32px;
    color: var(--color-primary-dark);
    font-weight: bold;
}

.sec-solution .cont-col .item-block {
    position: relative;
}

.sec-solution .cont-col .item-block .img-area {
    width: 1050px;
    height: 610px;
    overflow: hidden;
    border-radius: 20px;
}

.sec-solution .cont-col .item-block .img-area img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sec-solution .cont-col .item-block .txt-box {
    width: 370px;
    background-image: linear-gradient(to right, #1a74f7, #4f9bfb, #72b5fe);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 26px;
    position: absolute;
    right: 0;
    top: 200px;
    z-index: 1;
}

.sec-solution .cont-col .item-block .txt-box h4 {
    font-size: 46px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
}

.sec-solution .cont-col .item-block .txt-box .icon-wrap {
    height: 90px;
    margin: 20px 0 30px;
    position: relative;
}

.sec-solution .cont-col .item-block .txt-box .icon-wrap img {
    display: block;
    object-fit: contain;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    bottom: 0;
    max-width: 90%;
    max-height: 90%;
}

.sec-solution .cont-col .item-block .txt-box p {
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    height: 72px;
    overflow: hidden;
    text-align: center;
}

.sec-solution .cont-col .item-block .txt-box .btn-link {
    display: block;
    width: 175px;
    height: 50px;
    border-radius: 25px;
    background: #fff;
    text-align: center;
    margin: 30px auto 0;
}

.sec-solution .cont-col .item-block .txt-box .btn-link i {
    font-size: 15px;
    line-height: 50px;
    display: inline-block;
    padding-right: 70px;
    background: url(/skin/images/prev-2.png) no-repeat right center;
    color: var(--color-primary);
}

.sec-solution .cont-col .item-block .txt-box .btn-link:hover i {
    background: url(/skin/images/prev-3.png) no-repeat right center;
    color: #fff;
}

.sec-solution .cont-col .item-block .txt-box .btn-link:hover {
    background: var(--color-primary);
}

.sec-solution .cont-col .item-block {
    display: none;
}

.sec-solution .cont-col .item-block:first-child {
    display: block;
}

/* 生态联盟专用布局 */
.solution-showcase>.g-wrap:nth-child(2) {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.solution-showcase .nav-col {
    float: none;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.solution-showcase .nav-col li h3 span {
    font-size: 16px;
}

.solution-showcase .nav-col li.on h3 span,
.solution-showcase .nav-col li:hover h3 span {
    font-size: 26px;
}

.solution-showcase .cont-col {
    float: none;
    flex: 1;
    width: auto;
    display: flex;
    align-items: stretch;
}

.solution-showcase .cont-col .item-block {
    flex: 1;
    display: none;
    position: relative;
}

.solution-showcase .cont-col .item-block:first-child {
    display: flex;
}

.solution-showcase .cont-col .item-block[style*="display: block"] {
    display: flex !important;
}

.solution-showcase .doc-panel {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.solution-showcase .doc-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.solution-showcase .doc-item {
    display: none;
}

.solution-showcase .doc-item.active {
    display: block;
}

.solution-showcase .doc-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 153, 255, 0.1);
    color: #0099ff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 28px;
}

.solution-showcase .doc-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.solution-showcase .doc-title a {
    color: inherit;
    text-decoration: none;
}

.solution-showcase .doc-title a:hover {
    color: var(--color-primary);
}

.solution-showcase .doc-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 36px;
}

.solution-showcase .doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-showcase .doc-list li {
    position: relative;
    padding-left: 28px;
    font-size: 17px;
    line-height: 2.4;
    color: #333;
}

.solution-showcase .doc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
}

.solution-showcase .doc-dots {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 36px;
}

.solution-showcase .doc-dots .dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.solution-showcase .doc-dots .dot:hover {
    background: #bbb;
}

.solution-showcase .doc-dots .dot.active {
    background: var(--color-primary);
    width: 28px;
    border-radius: 6px;
}

.solution-showcase .doc-gallery {
    width: 440px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 245, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.solution-showcase .doc-gallery::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solution-showcase .doc-gallery::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solution-showcase .gallery-wrap {
    display: none;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solution-showcase .gallery-wrap.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-showcase .gallery-main {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 28px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.solution-showcase .gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.solution-showcase .gallery-main img.active {
    display: block;
}

.solution-showcase .gallery-main img:hover {
    transform: scale(1.03) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* 缩略图容器 */
.solution-showcase .gallery-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solution-showcase .thumb-prev,
.solution-showcase .thumb-next {
    width: 36px;
    height: 36px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solution-showcase .thumb-prev:hover,
.solution-showcase .thumb-next:hover {
    background: linear-gradient(135deg, #0099ff 0%, #0077cc 100%);
    border-color: transparent;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 153, 255, 0.35);
}

.solution-showcase .gallery-thumbs {
    flex: 1;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px;
}

.solution-showcase .gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.solution-showcase .gallery-thumbs img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(180deg, #e8e8e8, #d8d8d8) border-box;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.solution-showcase .gallery-thumbs img:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.solution-showcase .gallery-thumbs img.active {
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--color-primary), var(--color-primary-light)) border-box;
    box-shadow: 0 4px 12px var(--color-primary-border);
    transform: translateY(-2px);
}

/* 生态联盟区 end */

/* 三大优势区 */
.advantages-section {
    background: transparent;
    padding: var(--section-padding-pc, 0);
}

.advantages-section .container {
    max-width: 1400px;
}

/* 标题区域 */
.advantages-header {
    text-align: center;
    margin-bottom: 40px;
}

.advantages-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.advantages-title .highlight {
    color: var(--color-primary);
}

.advantages-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

.advantages-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.tabs-header {
    width: 85%;
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    background-color: rgb(247, 247, 248);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgb(212, 212, 212);
    border-radius: 10px;
    margin: 0 auto 32px;
}

.tab-btn {
    width: 33.3%;
    padding: 5px 20px;
    border: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgb(36, 36, 42);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: rgb(242, 249, 254);
    /*box-shadow: 0 4px 33px rgba(0, 0, 0, 0.05);*/
}

.tab-btn:hover:not(.active) {
    background-color: #e5e5e5;
}

.tabs-content {
    background: transparent;
    border-radius: 10px;
    position: relative;
    width: 100%;
    max-width: 80%;
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: transparent;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-panel.active {
    display: grid;
    opacity: 1;
    transform: scale(1);
    animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.panel-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gradient-label {
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(270deg, rgb(0, 71, 250) 0%, rgb(23, 183, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3em;
    color: rgb(175, 175, 175);
}

.panel-list .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%230066FF'/%3E%3Cpath d='M9 12.5 L11 14.5 L15.5 10' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.panel-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

/* Industry Right List Styles */
.industry-right-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin-top: -10px;
}

.industry-right-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 15px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.industry-right-item:nth-child(1) {
    z-index: 4;
}

.industry-right-item:nth-child(2) {
    z-index: 3;
}

.industry-right-item:nth-child(3) {
    z-index: 2;
}

.industry-right-item:nth-child(4) {
    z-index: 1;
}

.industry-right-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    /* Softer premium shadow */
    border-color: rgba(0, 102, 255, 0.2);
    z-index: 100;
}

.industry-right-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.industry-right-item:hover .industry-right-text {
    color: var(--color-primary);
}

/* Automatic Floating Animation */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.industry-right-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    animation: floatY 3s ease-in-out infinite;
    /* Continuous animation */
}

/* Stagger animation for visual interest */
.industry-right-item:nth-child(1) .industry-right-img {
    animation-delay: 0s;
}

.industry-right-item:nth-child(2) .industry-right-img {
    animation-delay: 1.5s;
}

.industry-right-item:nth-child(3) .industry-right-img {
    animation-delay: 0.7s;
}

.industry-right-item:nth-child(4) .industry-right-img {
    animation-delay: 0.7s;
}

.industry-right-item:hover .industry-right-img {
    animation-play-state: running;
}

/* Standard Showcase (Scenario/Industry) */
.industry-showcase {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-top: -10px;
    // box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: floatY 4s ease-in-out infinite;
    cursor: pointer;
    position: relative;
}

/* Intelligent/Integration Tab Special Style */
.integration-showcase {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-top: -10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    /* 白色背景 */
    background: #ffffff;
}

/* 中心柔和光晕 */
.integration-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 230, 255, 0.6) 0%, rgba(210, 235, 255, 0.35) 20%, rgba(220, 240, 255, 0.15) 40%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* 动态扩散波纹 */
.integration-showcase .ripple-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transform: translate(-50%, -50%);
    animation: rippleExpand 5s ease-out infinite;
    pointer-events: none;
    opacity: 0;
}

/* 8个波纹，间隔0.6秒 */
.integration-showcase .ripple-layer:nth-child(1) {
    animation-delay: 0s;
}

.integration-showcase .ripple-layer:nth-child(2) {
    animation-delay: 0.6s;
}

.integration-showcase .ripple-layer:nth-child(3) {
    animation-delay: 1.2s;
}

.integration-showcase .ripple-layer:nth-child(4) {
    animation-delay: 1.8s;
}

.integration-showcase .ripple-layer:nth-child(5) {
    animation-delay: 2.4s;
}

.integration-showcase .ripple-layer:nth-child(6) {
    animation-delay: 3s;
}

.integration-showcase .ripple-layer:nth-child(7) {
    animation-delay: 3.6s;
}

.integration-showcase .ripple-layer:nth-child(8) {
    animation-delay: 4.2s;
}

@keyframes rippleExpand {
    0% {
        width: 150px;
        height: 150px;
        opacity: 0;
        border-color: rgba(100, 180, 255, 0);
    }

    10% {
        opacity: 0.5;
        border-color: rgba(100, 180, 255, 0.4);
    }

    100% {
        width: 480px;
        height: 480px;
        opacity: 0;
        border-color: rgba(100, 180, 255, 0);
    }
}

/* Specific image styling for Integration to float nicely */
.integration-showcase img {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Shine Effect */
.industry-showcase::after,
.integration-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.industry-showcase:hover::after,
.integration-showcase:hover::after {
    left: 200%;
    transition: all 0.8s ease-in-out;
}

.industry-showcase img,
.integration-showcase img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.industry-showcase:hover img,
.integration-showcase:hover img {
    transform: scale(1.05);
}

/* 三大优势区 end */

/* 企业合作区 */
.enterprise-section {
    background: rgba(255, 255, 255, 0.25);
    padding: 60px 0;
}

.enterprise-section .container {
    max-width: 1400px;
}

.enterprise-header {
    text-align: center;
    margin-bottom: 40px;
}

.enterprise-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-main);
}

.enterprise-title .highlight {
    color: var(--color-primary);
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.logo-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.logo-track img {
    height: 40px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.logo-track img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* 企业合作区 end */

/* 移动端响应式 (清理冲突版本，统一逻辑至文件末尾) */

/* 移动端响应式 (清理冲突并修复语法错误) */

/* 首页新闻区 */
.home-news-l {
    margin-right: 15px;
}

.home-news-r {
    margin-left: 15px;
}

.home-news-h .media-img {
    position: relative;
}

.home-news-h .media-img .post-title {
    background: #fff;
    bottom: -30px;
    left: 30px;
    width: 65%;
    padding: 20px;
    position: absolute;
    color: #333;
    transition: 0.5s;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.06);
}

.home-news-h .media-img:hover .post-title {
    bottom: 30px;
}

.home-news-h .media-img .post-title h2 a {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    display: block;
}

.home-news-h .button {
    margin-top: 19.2px;
    width: 48px;
    line-height: 28px;
    font-size: 18px;
    background: var(--color-primary);
    color: #fff
}

.home-news-h .media-img:hover .button {
    background: var(--color-primary);
    color: #fff;
}

.home-news-c {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.home-news-c:hover {
    background: #f8fafc;
}

.home-news-c .news-date {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    margin-right: 18px;
}

.home-news-c .news-date .date-day {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
}

.home-news-c .news-date .date-month {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.home-news-c .news-info {
    flex: 1;
    min-width: 0;
    padding-left: 18px;
    border-left: 2px solid #e8e8e8;
}

.home-news-c:hover .news-info {
    border-left-color: #0066ff;
}

.home-news-c:last-child {
    border-bottom: none;
}

/* 首页新闻区 end */

/* 底部间距 */
.sec-padding {
    padding-top: var(--section-padding-pc, 80px);
    padding-bottom: var(--section-padding-pc, 80px);
}

.sec-padding .container {
    max-width: 1400px;
}


/* 底部间距 end */
/* ==========================================================
   Antigravity 移动端自适应补丁 (Responsive Patches)
   ========================================================== */

/* 1. 基础间距与通用组件适配 */
@media (max-width: 768px) {
    .sec-padding {
        padding-top: var(--section-padding-mobile, 40px) !important;
        padding-bottom: var(--section-padding-mobile, 40px) !important;
    }

    .sec-tit a {
        width: 80px;
        line-height: 38px;
        border-radius: 19px;
    }

    .sec-tit a i {
        font-size: 12px;
        line-height: 38px;
        background-size: 4px auto !important;
        padding-right: 23px;
    }
}

/* 2. 平板模式适配 (1024px) */
@media (max-width: 1024px) {
    .workday-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .workday-hero-left,
    .workday-hero-right {
        max-width: 100%;
        min-width: unset;
        width: 100%;
    }

    .workday-hero-buttons {
        justify-content: center;
    }

    .carousel-slides {
        height: 320px;
    }

    .sec-category .col-l ul li {
        width: 50% !important;
        height: auto !important;
    }

    .sec-category .col-r {
        width: 100% !important;
        margin-top: 30px;
    }

    .advantages-tabs .tabs-content .tab-panel {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* 3. 手机模式适配 (768px) - 全局大重置 (Global Mobile Reset) */
@media (max-width: 768px) {

    /* 强力重置：消除所有桌面端遗留的宽度、边距和浮动 */
    .g-wrap,
    .g-wrap2 {
        width: auto !important;
        max-width: none !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
        padding: 0 !important;
        float: none !important;
        display: block !important;
    }

    .col-l,
    .col-r,
    .nav-col,
    .cont-col,
    .item-block {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        float: none !important;
        height: auto !important;
        min-height: unset !important;
        box-sizing: border-box !important;
    }

    /* 标题统一样式：完全居中并重置间距 */
    .sec-hd {
        margin-bottom: 30px !important;
    }

    .sec-hd .g-wrap,
    .sec-hd .g-wrap2 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .sec-hd .col-l ul {
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .sec-hd .col-l li {
        margin: 0 10px !important;
        float: none !important;
        display: inline-block !important;
    }

    .sec-hd .col-l li a {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .sec-hd .col-l li.on a {
        font-size: 20px !important;
    }

    .sec-hd .btn-link {
        margin: 15px auto 0 !important;
        float: none !important;
        width: 100px !important;
        line-height: normal !important;
        display: block !important;
    }

    .sec-hd .btn-link span {
        line-height: 36px !important;
        font-size: 13px !important;
        padding-right: 23px !important;
        background-size: 4px auto !important;
    }

    /* 软件服务等板块的 sec-tit 居中适配 */
    .sec-tit,
    .sec-tit.tit-icon-product {
        padding: 0 !important;
        text-align: center !important;
        font-size: 24px !important;
        line-height: 1.5 !important;
        background: none !important;
        margin-bottom: 20px !important;
    }

    .sec-tit a.btn-link,
    .sec-tit a {
        float: none !important;
        margin: 15px auto 0 !important;
        display: block !important;
        width: 100px !important;
        border: 1px solid var(--color-primary);
        border-radius: 20px;
        line-height: 34px;
        font-size: 13px;
        color: var(--color-primary);
        box-sizing: border-box !important;
    }

    .sec-tit a.btn-link i {
        font-style: normal;
    }

    /* 精选产品 (Featured Products) - 解决按钮超宽 */
    .sec-featured {
        overflow: hidden !important;
        padding: 40px 0 !important;
    }

    .prod-slider {
        margin-top: 20px !important;
        padding-bottom: 40px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .prod-slider .arrow-prev,
    .prod-slider .arrow-next {
        /* 如果按钮在手机端依然溢出，可以考虑隐藏或移动位置 */
        /* display: none !important; */
    }

    /* Hero Banner */
    .workday-hero-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .workday-hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .carousel-slides {
        height: 200px !important;
    }

    .caption-overlay {
        padding: 8px;
        max-width: 240px;
    }

    /* 软件服务 - 彻底解决单列排列 */
    .sec-category {
        padding: 40px 0 !important;
        background-color: #fcfdfe !important;
    }

    .sec-category .col-l ul {
        display: block !important;
        width: 100% !important;
        clear: both !important;
    }

    .sec-category .col-l ul li,
    .sec-category .col-l ul li:nth-child(n) {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important;
        border-radius: 12px !important;
        height: auto !important;
        margin-bottom: 20px !important;
        background-color: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        display: block !important;
    }

    .sec-category .col-l li .info-row {
        flex-direction: column !important;
        gap: 15px;
        margin-top: 10px;
    }

    .sec-category .col-l li .info-row dl {
        width: 100% !important;
    }

    .sec-category .col-l li .img-area {
        width: 100% !important;
        height: 160px !important;
    }

    .sec-category .feat-card {
        padding: 20px 15px !important;
        height: auto !important;
    }

    .sec-category .col-r .img-area {
        width: 100% !important;
        height: 200px !important;
        margin: 15px 0 !important;
        flex: none !important;
    }

    .sec-category .col-r .img-area img,
    .sec-category .feat-card .img-area img {
        position: static !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        max-height: 200px !important;
        height: auto !important;
        display: block !important;
    }

    /* 生态联盟 (Eco-Alliance) - 强力重构与局部回滚 */
    .sec-solution {
        background: #f9fbff !important;
        padding: 30px 0 !important;
    }

    .solution-showcase>.g-wrap:nth-child(1) {
        margin-bottom: 20px !important;
    }

    .solution-showcase .sec-hd .g-wrap {
        display: block !important;
        text-align: left !important;
    }

    .solution-showcase .sec-hd .col-l {
        width: auto !important;
        display: inline-block !important;
        margin: 0 !important;
    }

    .solution-showcase .sec-hd .btn-link {
        float: right !important;
        margin: 0 !important;
        width: auto !important;
        padding: 0 15px !important;
    }

    .sec-solution .nav-col {
        margin-bottom: 20px !important;
    }

    .sec-solution .nav-col ul {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding-bottom: 20px !important;
        /* 增加空间给下划线 */
        border: none !important;
        margin-bottom: 20px !important;
        -webkit-overflow-scrolling: touch;
    }

    .sec-solution .nav-col li {
        flex: 0 0 auto !important;
        margin-right: 25px !important;
        display: block !important;
        border: none !important;
        outline: none !important;
        /* 消除虚线框 */
        padding: 0 !important;
        position: relative;
    }

    .sec-solution .nav-col li h3 {
        border: none !important;
        outline: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .sec-solution .nav-col li h3 span {
        font-size: 14px !important;
        line-height: 1.2 !important;
        padding-bottom: 5px;
        display: block;
        border: none !important;
        outline: none !important;
    }

    .sec-solution .nav-col li.on h3 span {
        color: var(--color-primary);
        font-size: 16px !important;
        font-weight: bold;
        position: relative !important;
        border: none !important;
    }

    /* 类似于下划线的精密设计版本 */
    .sec-solution .nav-col li.on h3 span::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        bottom: -10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 24px !important;
        height: 3px !important;
        background: var(--color-primary) !important;
        border-radius: 2px !important;
    }

    /* 彻底隐藏移动端导航项的背景大图标和小圆点，以及用户指出的多余线条 */
    .sec-solution .nav-col ul::before,
    .sec-solution .nav-col li h3::before,
    .sec-solution .nav-col li.on h3::before,
    .sec-solution .nav-col li::before,
    .sec-solution .nav-col li.on::after {
        display: none !important;
        background: none !important;
        content: none !important;
        border: none !important;
    }

    .sec-solution .nav-col li h3 {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    /* 移除之前可能遗留的导航指示小圆点 */
    .sec-solution .nav-col li::after,
    .sec-solution .nav-col li.on::after {
        display: none !important;
    }

    .sec-solution .doc-panel {
        display: flex !important;
        flex-direction: column !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        background: transparent !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
        overflow: hidden;
    }

    .sec-solution .doc-gallery {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        background: #fff !important;
        border-radius: 12px !important;
        margin-bottom: 15px;
        order: 2 !important;
        /* 强制图片在下 */
        position: relative !important;
    }

    /* 彻底隐藏移动端巨大的背景装饰球 */
    .sec-solution .doc-gallery::before,
    .sec-solution .doc-gallery::after {
        display: none !important;
    }

    .sec-solution .doc-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        background: #fff !important;
        border-radius: 12px !important;
        overflow: hidden;
        word-break: break-all;
        order: 1 !important;
        margin-bottom: 25px !important;
        /* 增加与图片区的间距 */
    }

    .sec-solution .gallery-thumbs-wrap {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 30px !important;
        /* 为左右箭头留出空间，如果箭头是绝对定位的 */
        position: relative !important;
        overflow: hidden !important;
    }

    .sec-solution .gallery-thumbs {
        display: flex !important;
        flex-wrap: nowrap !important;
        /* 恢复单行 */
        gap: 12px !important;
        overflow-x: auto !important;
        /* 允许横向滚动 */
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .sec-solution .gallery-thumbs::-webkit-scrollbar {
        display: none !important;
    }

    .sec-solution .gallery-thumbs img {
        width: 52px !important;
        height: 52px !important;
        flex: 0 0 auto !important;
        /* 防止被压缩 */
    }

    .sec-solution .thumb-prev,
    .sec-solution .thumb-next {
        display: flex !important;
        /* 确保箭头可见 */
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 2 !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 12px !important;
    }

    .sec-solution .thumb-prev {
        left: 0 !important;
    }

    .sec-solution .thumb-next {
        right: 0 !important;
    }

    .sec-solution .gallery-main {
        height: 180px !important;
    }

    .sec-solution .doc-tag {
        font-size: 12px !important;
        padding: 6px 15px !important;
        margin-bottom: 15px !important;
    }

    .sec-solution .doc-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    .sec-solution .doc-desc {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }

    /* 隐藏内容列表中的蓝色圆点 */
    .solution-showcase .doc-list li::before {
        display: none !important;
    }

    .solution-showcase .doc-list li {
        padding-left: 0 !important;
    }

    /* 三大优势 */
    .advantages-section {
        padding: 40px 0 !important;
    }

    .advantages-title {
        font-size: 22px !important;
    }

    .advantages-subtitle {
        font-size: 13px !important;
    }

    .tabs-header {
        width: 100% !important;
        flex-wrap: wrap;
        background: #eee !important;
        border-radius: 6px !important;
        gap: 2px !important;
        padding: 4px !important;
    }

    .tab-btn {
        flex: 1;
        min-width: 80px;
        font-size: 13px !important;
        padding: 8px 5px !important;
    }

    .tabs-content {
        max-width: 100% !important;
    }

    .tab-panel {
        display: none !important;
        /* 默认隐藏，修复切换失效 */
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tab-panel.active {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .panel-left {
        margin-bottom: 20px;
    }

    .panel-title {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    .panel-list li {
        font-size: 13px !important;
        gap: 8px !important;
    }

    .industry-right-item {
        padding: 12px !important;
        border-radius: 8px !important;
    }

    .industry-right-text {
        font-size: 15px !important;
    }

    .industry-right-img {
        height: 40px !important;
    }

    /* 合作伙伴 */
    .enterprise-section {
        padding: 30px 0 !important;
    }

    .enterprise-title {
        font-size: 18px !important;
    }

    .logo-track {
        gap: 20px !important;
    }

    .logo-track img {
        height: 20px !important;
    }

    /* 新闻动态：保持原生风格并适配宽度 */
    .news .line {
        display: block !important;
    }

    .news .x6 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 30px !important;
        padding: 0 !important;
    }

    .home-news-l,
    .home-news-r {
        margin: 0 !important;
    }

    .home-news-h .media-img .post-title {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        padding: 20px !important;
        background: #fff !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06) !important;
        margin-top: -10px;
        /* 稍微与图片重叠一点点以保持设计感，或者设为0 */
        z-index: 2;
        box-sizing: border-box;
    }

    .img-new-h {
        height: auto !important;
        max-height: 220px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .home-news-c {
        padding: 15px !important;
        background: #fff !important;
        border-bottom: 1px solid #f0f0f0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .home-news-c .news-date {
        width: 50px !important;
        margin-right: 15px !important;
    }

    .home-news-c .news-info {
        padding-left: 15px !important;
        border-left: 2px solid #e8e8e8 !important;
    }

.sec-category h3 a {
font-size: 22px
}
}

/* --- Antigravity 补丁结束 --- */
