/* banner */
.banner-section {
    padding: 98px 0 30px 0;
    height: 100vh;
}

.banner-section .container {
    height: 100%;
}

.banner-swiper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

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

.banner-swiper .slide-common img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-swiper .slide-common .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;
    /* padding-right: 48px; */
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.banner-swiper .swiper-slide .overlay-content h3 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    width: 60%;
    text-transform: uppercase;
    transform: translateX(100px);
    opacity: 0;
    transition: none;
}

.banner-swiper .swiper-slide .overlay-content h1 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    width: 60%;
    text-transform: uppercase;
    transform: translateX(100px);
    opacity: 0;
    transition: none;
}

.banner-swiper .swiper-slide .overlay-content h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    width: 60%;
    text-transform: uppercase;
    transform: translateX(100px);
    opacity: 0;
    transition: none;
}

.banner-swiper .swiper-slide .overlay-content p {
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.5;
    width: 60%;
    font-family: var(--family-font-secondary);
    transform: translateX(100px);
    opacity: 0;
    transition: none;
}

/* 只有active slide的文字才显示动画 */
.banner-swiper .swiper-slide-active .overlay-content h3 {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.banner-swiper .swiper-slide-active .overlay-content h1 {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.banner-swiper .swiper-slide-active .overlay-content h2 {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.banner-swiper .swiper-slide-active .overlay-content p {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out 0.2s, opacity 0.6s ease-out 0.2s;
}

.banner-swiper .slide-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.banner-swiper .slide-3 img {
    width: 48%;
    height: auto;
    transform: translateX(-50px);
    opacity: 0;
    transition: none;
}

.banner-swiper .swiper-slide-active.slide-3 img {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.banner-swiper .slide-3 .overlay-content {
    display: flex;
    align-items: flex-end;
    padding-right: 48px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.banner-swiper .slide-3 .overlay-content h1 {
    color: #1a1a1a;
    width: 100%;
    font-size: 36px;
    transform: translateX(100px);
    opacity: 0;
    transition: none;
}

.banner-swiper .slide-3 .overlay-content h2 {
    color: #1a1a1a;
    width: 100%;
    font-size: 36px;
    transform: translateX(100px);
    opacity: 0;
    transition: none;
}

.banner-swiper .slide-3 .overlay-content p {
    color: #1a1a1a;
    width: 100%;
    font-size: 16px;
    transform: translateX(100px);
    opacity: 0;
    transition: none;
}

/* slide-3 的active状态 */
.banner-swiper .swiper-slide-active.slide-3 .overlay-content h1 {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.banner-swiper .swiper-slide-active.slide-3 .overlay-content h2 {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.banner-swiper .swiper-slide-active.slide-3 .overlay-content p {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out 0.2s, opacity 0.6s ease-out 0.2s;
}




/* 分頁點樣式 */
.banner-swiper .swiper-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    right: 100px;
    left: auto !important;
    bottom: 40px !important;
}

.banner-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 !important;
    opacity: 0.9;
}

.banner-swiper .swiper-pagination-bullet.active {
    color: var(--primary-color);
}

.banner-swiper .swiper-pagination-bullet.active::after {
    border-color: var(--primary-color);
}

/* SVG 直接內嵌在 bullet 中 */
.banner-swiper .swiper-pagination-bullet svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 避免文字重疊 */
.banner-swiper .swiper-pagination-bullet>span {
    position: relative;
    z-index: 1;
}

.banner-swiper .swiper-pagination-bullet .progress-circle {
    transition: stroke-dashoffset 0.1s linear;
}

/* 导航按钮样式 */
.banner-swiper {
    position: relative;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #f7f6f6;
    /* border: 1px solid #1d2d5e; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    pointer-events: none;
    /* 让按钮跟随鼠标移动，使用 transform 实现平滑跟随 */
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transform: translate(-50%, -50%);
    /* 位置变化不使用 transition，让按钮立即跟随鼠标 */
    will-change: transform, left, top;
    overflow: visible;
}

/* 当按钮可见时，允许点击 */
.banner-swiper .swiper-button-next.visible,
.banner-swiper .swiper-button-prev.visible {
    pointer-events: auto;
    cursor: none;
}

/* 隐藏默认的箭头 */
.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
    display: none;
}

/* 自定义箭头图标 */
.banner-swiper .swiper-button-next .nav-arrow,
.banner-swiper .swiper-button-prev .nav-arrow {
    width: 0;
    height: 0;
    display: block;
    margin: 0;
}

/* 向右箭头（右半边） */
.banner-swiper .swiper-button-next .nav-arrow {
    width: 18px;
    height: 18px;
}

/* 向左箭头（左半边） */
.banner-swiper .swiper-button-prev .nav-arrow {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
}

/* 进度条SVG样式 */
.banner-swiper .swiper-button-next .progress-ring,
.banner-swiper .swiper-button-prev .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 55px;
    pointer-events: none;
    z-index: 1;
}

.banner-swiper .swiper-button-next .nav-arrow,
.banner-swiper .swiper-button-prev .nav-arrow {
    position: relative;
    z-index: 2;
}

/* 进度条圆圈样式 */
.banner-swiper .nav-button-progress-circle {
    stroke-dasharray: 170 150.8;
    /* stroke-dashoffset: 150.8; */
    transition: stroke-dashoffset 0.1s linear;
    stroke-linecap: round;
    stroke: #1d2d5e;
    stroke-width: 2;
    opacity: 1;
    visibility: visible;
}

/* 鼠标悬浮在swiper上时显示按钮（移除默认的hover显示，改为通过JS控制） */

/* 根据鼠标位置显示对应的按钮 */
.banner-swiper.show-prev .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.banner-swiper.show-next .swiper-button-next {
    opacity: 1;
    visibility: visible;
}

/* 隐藏另一边的按钮 */
.banner-swiper.show-prev .swiper-button-next {
    opacity: 0;
    visibility: hidden;
}

.banner-swiper.show-next .swiper-button-prev {
    opacity: 0;
    visibility: hidden;
}







/* customers-case */
.customers-section {
    padding: 100px 0 80px 0;
    /* background-color: #fff; */
    position: relative;
}

.customers-section::after {
    width: 100%;
    height: 100%;
    background-image: url('/static/pic/global-bg.svg');
    opacity: 0.5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
}


.customers-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

.customers-btn {
    text-align: center;
}


/* 客户Logo滚动展示 */
.customers-logo-wrapper {
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.customers-logo-row {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 30px;
}

.customers-logo-row:last-child {
    margin-bottom: 0;
}

.customers-logo-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    will-change: transform;
}

.customers-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    padding: 10px;
    /* background-color: #fff; */
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
}

.customers-logo-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); */
}

.customers-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
    transition: all 0.3s ease;
}

.customers-logo-item:hover img {
    /* filter: grayscale(0%); */
    transform: scale(1.05);
}

/* 第一行：向左滚动 */
.customers-logo-row-1 .customers-logo-track {
    animation: scroll-left 40s linear infinite;
}

/* 第二行：向右滚动 */
.customers-logo-row-2 .customers-logo-track {
    animation: scroll-right 40s linear infinite;
}

/* 向左滚动动画 */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 向右滚动动画 */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .customers-logo-item {
        width: 150px;
        height: 80px;
        padding: 15px;
    }

    .customers-logo-track {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .customers-logo-wrapper {
        margin-top: 40px;
    }

    .customers-logo-row {
        margin-bottom: 20px;
    }

    .customers-logo-item {
        width: 120px;
        height: 70px;
        padding: 12px;
    }

    .customers-logo-track {
        gap: 30px;
    }

    .customers-logo-row-1 .customers-logo-track {
        animation-duration: 25s;
    }

    .customers-logo-row-2 .customers-logo-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .customers-logo-item {
        width: 150px;
        height: 60px;
        padding: 10px;
    }

    .customers-logo-track {
        gap: 20px;
    }
}



/* five-project-introduction */
.pro-section {
    padding: 96px 0;
}

.pro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pro-container .img-content {
    width: 50%;
}

.pro-container .img-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-container .text-content {
    width: 50%;
}

/* 桌面端样式 - 隐藏移动端元素 */
.pro-header-mobile,
.pro-content-mobile,
.pro-container .img-content-mobile {
    display: none;
}

.pro-section-total-mobile{
    display: none;
}

.pro-container .text-content h5 {
    font-size: 18px;
    font-family: var(--family-font-secondary);
    font-weight: 500;
}

.pro-container .text-content h3 {
    font-size: 40px;
    text-transform: uppercase;
    margin: 20px 0;
    color: var(--primary-color);
}

.last-pro-section .pro-container .text-content h5 {
    font-size: 17px;
}

.last-pro-section .pro-container .text-content h3 {
    font-size: 32px;
}

.pro-container .text-content p {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #1a1a1a;
    font-family: var(--family-font-secondary);
}

.pro-container .text-content p:last-child {
    margin-bottom: 0;
}

.pro-container .text-content ul {
    padding-left: 20px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pro-container .text-content ul li {
    list-style: circle;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    font-family: var(--family-font-secondary);
}

.pro-container .btn-content .primary-btn {
    padding: 10px 40px;
    font-size: 14px;
    border-radius: 8px;
}

.pro-section-bg {
    background-color: var(--section-bg);
}

.pro-container .btn-content {
    margin-top: 25px;
}



/* review-section */
.review-section {
    padding: 70px 0;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}


@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.review-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, minmax(80px, auto));
    gap: 30px;
    column-gap: 80px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

/* 不规则的卡片布局 */
.review-card {
    position: relative;
    perspective: 1000px;
    grid-column: span 6;
}

.review-card-1 {
    grid-row: 1 / span 4;
    transform: rotate(-2deg);
}

.review-card-2 {
    grid-row: 2 / span 4;
    transform: rotate(1.5deg);
    grid-column: span 6;
}

.review-card-3 {
    grid-row: 5 / span 4;
    transform: rotate(-1deg);
}

.review-card-4 {
    grid-row: 6 / span 4;
    transform: rotate(2deg);
}

.review-card-inner {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 35px;
    height: 95%;
    box-shadow:
        0 2px 6px rgba(29, 45, 94, 0.08),
        0 4px 8px rgba(29, 45, 94, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(29, 45, 94, 0.08);
}

/* .review-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #4a6fa5 50%,
            var(--primary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.review-card:hover .review-card-inner::before {
    transform: scaleX(1);
}

.review-card-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 45, 94, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover .review-card-inner::after {
    opacity: 1;
} */

.review-card:hover .review-card-inner {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
    box-shadow:
        0 3px 8px rgba(29, 45, 94, 0.12),
        0 5px 8px rgba(29, 45, 94, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 3px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(29, 45, 94, 0.1);
    box-shadow: 0 2px 4px rgba(29, 45, 94, 0.15);
    transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 2px 4px rgba(29, 45, 94, 0.2);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.review-card:hover .review-avatar img {
    transform: scale(1.1);
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-family: var(--family-font-secondary);
    text-transform: uppercase;
}

.review-role {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-family: var(--family-font-secondary);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.star {
    font-size: 20px;
    color: #ddd;
    transition: all 0.3s ease;
    display: inline-block;
}

.star-filled {
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.review-card:hover .star-filled {
    animation: starPulse 0.6s ease;
    transform: scale(1.2);
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.review-content-desktop {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    margin-top: 10px;
}

.review-content-desktop p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    font-family: var(--family-font-secondary);
    margin: 0;
    font-style: italic;
}

.review-quote {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(29, 45, 94, 0.08);
    line-height: 1;
    font-family: 'Georgia', serif;
    transition: all 0.4s ease;
    z-index: 1;
}

.review-card:hover .review-quote {
    color: rgba(29, 45, 94, 0.12);
    transform: scale(1.1) rotate(5deg);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .review-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .review-card {
        grid-column: span 4;
    }

    .review-card-1 {
        grid-row: 1 / span 4;
    }

    .review-card-2 {
        grid-row: 1 / span 4;
    }

    .review-card-3 {
        grid-row: 5 / span 4;
    }

    .review-card-4 {
        grid-row: 5 / span 4;
    }
}

/* 桌面端样式 - 隐藏移动端元素 */
.review-header-mobile .review-accordion-icon,
.review-header-mobile .review-rating,
.review-content-mobile {
    display: none;
}

.review-rating-desktop,
.review-content-desktop {
    display: block;
}

@media (max-width: 992px) {
    .review-section {
        padding: 60px 0;
    }

    .review-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }

    .review-card {
        grid-column: 1;
        grid-row: auto;
        transform: rotate(0deg) !important;
    }

    .review-card-inner {
        padding: 25px;
        border-radius: 8px;
    }

    .review-name {
        font-size: 18px;
    }

    .review-content-desktop p {
        font-size: 15px;
    }

    .review-card-inner::after {
        display: none;
    }

    .review-quote {
        font-size: 80px;
        top: 20px;
        right: 25px;
    }

    /* 移动端显示移动元素，隐藏桌面元素 */
    .review-header-mobile .review-accordion-icon,
    .review-header-mobile .review-rating,
    .review-content-mobile {
        display: block;
    }

    .review-rating-desktop,
    .review-content-desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .review-title {
        font-size: 28px;
    }

    .review-card-inner {
        padding: 20px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-name {
        font-size: 16px;
    }

    .review-content p {
        font-size: 14px;
    }
}

/* contact-section */
.contact-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.contact-content {
    width: 100%;
    display: flex;
    border-radius: 20px;
    box-shadow: 0 0 6px rgba(29, 45, 94, 0.1);
    padding: 50px;
    gap: 30px;
    background-color: #fff;
}

.contact-left,
.contact-right {
    width: 50%;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-left span {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    opacity: 0.8;
    font-weight: 500;
}

.contact-left h1 {
    color: var(--primary-color);
    font-size: 32px;
    text-transform: uppercase;
    margin: 30px 0 50px 0;
}

.contact-left p {
    font-size: 17px;
    font-family: var(--family-font-secondary);
    color: #666;
    line-height: 1.6;
    width: 80%;
}

.contact-response {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;

}

.contact-response-avatars {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 12px;
}

.contact-response-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 16px rgba(26, 39, 88, 0.18);
    background: #fff;
}

.contact-response-avatars img:not(:first-child) {
    margin-left: -14px;
}

.contact-response-status {
    position: absolute;
    right: 0px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(39, 194, 108, 0.35);
}

.contact-response-text {
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.7;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--family-font-secondary);
}

.contact-response-text span svg {
    width: 15px;
    height: 15px;
    transform: rotate(180deg);
}

.contact-form {
    width: 100%;
    background: #f9f9f9;
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-form-body .layui-form-item {
    margin-bottom: 18px;
}

.contact-form-body .layui-input-block {
    margin-left: 0;
}

.contact-form-body .layui-input,
.contact-form-body .layui-textarea {
    border-radius: 10px;
    border: 1px solid rgba(29, 45, 94, 0.08);
    background: #fbfbfd;
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--family-font-secondary);
    color: #1a1a1a;
    box-shadow: none;
    height: 50px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-body .layui-input:focus,
.contact-form-body .layui-input:hover,
.contact-form-body .layui-textarea:focus,
.contact-form-body .layui-textarea:hover {
    border-color: rgba(29, 45, 94, 0.4);
    box-shadow: 0 0 0 3px rgba(29, 45, 94, 0.08);
}

.contact-form-body .layui-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.contact-submit-item {
    margin-top: 28px;
}

.contact-submit-btn {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 12px 24px rgba(29, 45, 94, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    box-shadow: 0 16px 30px rgba(26, 39, 88, 0.28);
    transform: translateY(-1px);
}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(26, 39, 88, 0.2);
}

.contact-form-body .layui-form-checked[lay-skin=primary] i {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.contact-form-body .layui-btn+.layui-btn {
    margin-left: 0;
}

.contact-form-body .layui-form-select .layui-input {
    padding-right: 40px;
}

.contact-form-body .layui-form-select .layui-edge {
    right: 18px;
}

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

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .contact-left p {
        width: 100%;
    }

    .contact-response {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-response-avatars {
        padding-right: 0;
    }

    .contact-response-text {
        font-size: 15px;
    }
}

@media (max-width: 560px) {

    .contact-form-body .layui-input,
    .contact-form-body .layui-textarea {
        font-size: 15px;
    }

    .contact-submit-btn {
        font-size: 16px;
    }
}

.contact-form-body .layui-form-selected dl {
    top: 55px;
    border-radius: 10px;
    font-family: var(--family-font-secondary);
}
.contact-form-body .layui-form-selectup dl{
    top: auto;
    bottom: 60px;
}

.layui-form-select dl dd.layui-this {
    color: var(--primary-color);
    font-weight: 600;
}




/* irregular-section - 不规则排版布局 */
.irregular-section {
    padding: 100px 0 40px 0;
    background-color: var(--section-bg);
}

.irregular-container {
    width: 100%;
}

.irregular-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-swiper {
    padding: 20px 0;
}

.blog-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.blog-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.blog-swiper .blog-swiper-pagination {
    display: none;
}

.list-item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(29, 45, 94, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
    height: 100%;
}


.item-img {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    height: 380px;
    flex-shrink: 0;
}

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

.item-img:hover img {
    transform: scale(1.02);
}

.item-img .item-classify {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--family-font-secondary);
}

.item-img .item-tab {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--family-font-secondary);
}

.item-img .item-tab svg {
    width: 35px;
    height: 35px;
}

.item-img .tech-tab svg {
    width: 30px;
    height: 30px;
}

.item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.item-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
}

.item-content h5:hover {
    color: var(--primary-color);
}

.item-content p {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    font-family: var(--family-font-secondary);
    margin-top: 10px;
    line-height: 1.5;
}

.date-eye {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.7;
    /* font-family: var(--family-font-secondary); */
}

.item-date svg {
    width: 18px;
    height: 18px;
    margin-bottom: 1px;
}

.item-tag {
    display: flex;
    margin-top: 20px;
    font-size: 14px;
    align-items: center;
    font-family: var(--family-font-secondary);
    color: #666;
    gap: 5px;
}

@media (max-width: 968px) {
    .irregular-section {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .irregular-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .irregular-section {
        padding: 30px 0;
    }
}

/* 导航按钮样式 */
.blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    top: 50%;
    opacity: 0;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: center center;
    transition: all 0.4s ease-in-out;
}

.blog-swiper .swiper-button-next:hover,
.blog-swiper .swiper-button-prev:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.blog-swiper .swiper-button-next {
    right: 0px;
}

.blog-swiper .swiper-button-prev {
    left: 45px;
}

.blog-swiper .swiper-button-next::after,
.blog-swiper .swiper-button-prev::after {
    display: none;
}

.blog-swiper .swiper-button-next .nav-arrow,
.blog-swiper .swiper-button-prev .nav-arrow {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-swiper .swiper-button-next .nav-arrow svg,
.blog-swiper .swiper-button-prev .nav-arrow svg {
    width: 20px;
    height: 20px;
    color: #1d2d5e;
}

.blog-swiper .swiper-button-prev .nav-arrow svg {
    transform: rotate(180deg);
}





@media (min-width: 993px) and (max-width: 1280px) {
    .banner-swiper .swiper-slide .overlay-content h1{
        font-size: 30px;
    }
}

/* 响应式调整 */
@media (max-width: 992px) {

    .blog-swiper .swiper-button-next {
        right: -10px;
    }

    .blog-swiper .swiper-button-prev {
        left: 30px;
    }

    .blog-swiper .swiper-button-next,
    .blog-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .blog-swiper .swiper-button-next .nav-arrow svg,
    .blog-swiper .swiper-button-prev .nav-arrow svg {
        width: 16px;
        height: 16px;
    }
}

.blog-swiper:hover .swiper-button-next,
.blog-swiper:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
    pointer-events: auto;
}

.blog-swiper .swiper-button-next .nav-arrow,
.blog-swiper .swiper-button-prev .nav-arrow {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f7f6f6;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
}

.blog-swiper .swiper-button-next .nav-arrow svg,
.blog-swiper .swiper-button-prev .nav-arrow svg {
    width: 20px;
    height: 20px;
    color: #1d2d5e;
    transition: all 0.3s ease;
}

/* prev 按钮的默认图标需要旋转180度 */
.blog-swiper .swiper-button-prev .nav-arrow:not(.hover-icon) svg {
    transform: rotate(180deg);
}

/* hover-icon 默认状态：透明且稍微缩小 */
.blog-swiper .swiper-button-next .hover-icon,
.blog-swiper .swiper-button-prev .hover-icon {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* hover 时：默认图标淡出并缩小，hover-icon 淡入并放大 */
.blog-swiper .swiper-button-next:hover .nav-arrow:not(.hover-icon),
.blog-swiper .swiper-button-prev:hover .nav-arrow:not(.hover-icon) {
    opacity: 0;
    transform: scale(0.8);
}

.blog-swiper .swiper-button-next:hover .hover-icon,
.blog-swiper .swiper-button-prev:hover .hover-icon {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* prev 按钮的 hover-icon 需要旋转180度 */
.blog-swiper .swiper-button-prev .hover-icon svg {
    transform: rotate(180deg);
}



/* ============================================
   滚动加载动画 - 纯CSS实现
   ============================================ */

/* 初始状态：隐藏元素 */
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right,
.fade-in-scale,
.slide-in-up {
    opacity: 0;
}

/* 淡入上滑动画 */
.fade-in-up {
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 淡入下滑动画 */
.fade-in-down {
    transform: translateY(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-down.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 淡入左滑动画 */
.fade-in-left {
    transform: translateX(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 淡入右滑动画 */
.fade-in-right {
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 淡入缩放动画 */
.fade-in-scale {
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* 滑入上移动画 */
.slide-in-up {
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 延迟动画 */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* 应用到各个section的标题（industries-title是滚动横幅，不需要动画） */
.service-scope-title:not(.animate),
.customers-title:not(.animate),
.review-title:not(.animate),
.pro-container:not(.animate) .text-content h3,
.pro-container:not(.animate) .text-content h5 {
    opacity: 0;
    transform: translateY(30px);
}

.service-scope-title,
.customers-title,
.review-title,
.pro-container .text-content h2,
.pro-container .text-content h5 {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.service-scope-title.animate,
.customers-title.animate,
.review-title.animate,
.pro-container.animate .text-content h3,
.pro-container.animate .text-content h5 {
    opacity: 1;
    transform: translateY(0);
}

/* service-scope section 动画 */
.service-scope-section:not(.animate) {
    opacity: 0;
    transform: translateY(50px);
}

.service-scope-section {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-scope-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-scope-section:not(.animate) .service-swiper .service-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.service-swiper .service-item {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-scope-section.animate .service-swiper .swiper-slide:nth-child(1) .service-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.service-scope-section.animate .service-swiper .swiper-slide:nth-child(2) .service-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.service-scope-section.animate .service-swiper .swiper-slide:nth-child(3) .service-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.service-scope-section.animate .service-swiper .swiper-slide:nth-child(4) .service-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.service-scope-section.animate .service-swiper .swiper-slide:nth-child(5) .service-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.service-scope-section.animate .service-swiper .swiper-slide:nth-child(n+6) .service-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}



/* customers section 动画 */
.customers-section:not(.animate) {
    opacity: 0;
    transform: translateY(50px);
}

.customers-section {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.customers-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.customers-title.animate {
    transition-delay: 0.2s;
}

.customers-section:not(.animate) .customers-btn {
    opacity: 0;
    transform: translateY(30px);
}

.customers-btn {
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.customers-section.animate .customers-btn {
    opacity: 1;
    transform: translateY(0);
}

.customers-section:not(.animate) .customers-logo-item {
    opacity: 0;
    transform: translateY(20px);
}

.customers-logo-item {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.customers-section.animate .customers-logo-item {
    opacity: 1;
    transform: translateY(0);
}

/* pro-section 动画 */
.pro-section:not(.animate) {
    opacity: 0;
    transform: translateY(50px);
}

.pro-section {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pro-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.pro-container:not(.animate) .img-content {
    opacity: 0;
    transform: translateX(-50px);
}

.pro-container:not(.animate) .text-content {
    opacity: 0;
    transform: translateX(50px);
}

.pro-container .img-content,
.pro-container .text-content {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pro-section.animate .img-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.pro-section.animate .text-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

/* 反转布局的动画（图片在右边） */
.pro-section .pro-container:has(.img-content:last-child):not(.animate) .img-content {
    transform: translateX(50px);
}

.pro-section .pro-container:has(.img-content:last-child):not(.animate) .text-content {
    transform: translateX(-50px);
}

.pro-section.animate .pro-container:has(.img-content:last-child) .img-content {
    transform: translateX(0);
}

.pro-section.animate .pro-container:has(.img-content:last-child) .text-content {
    transform: translateX(0);
}




/* review-section 动画 */
.review-section:not(.animate) {
    opacity: 0;
    transform: translateY(50px);
}

.review-section {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.review-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.review-section:not(.animate) .review-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.review-card {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.review-section.animate .review-card-1 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.review-section.animate .review-card-2 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.review-section.animate .review-card-3 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.review-section.animate .review-card-4 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

/* contact-section 动画 */
.contact-section:not(.animate) {
    opacity: 0;
    transform: translateY(50px);
}

.contact-section {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-section:not(.animate) .contact-content .img-con {
    opacity: 0;
    transform: translateX(-30px);
}

.contact-section:not(.animate) .contact-content .txt-con {
    opacity: 0;
    transform: translateX(30px);
}

.contact-content .img-con,
.contact-content .txt-con {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.contact-section.animate .img-con {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.contact-section.animate .txt-con {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}






/* faq-section */
.faq-section {
    padding: 100px 0 60px 0;
}

.faq-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.faq-content {
    display: flex;
    gap: 40px;
    background-color: #fff;
    box-shadow: 0 0px 4px rgba(29, 45, 94, 0.1);
    padding: 30px;
    border-radius: 20px;
}

.faq-left {
    width: 40%;
}

.faq-right {
    width: 60%;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
}

.faq-left span {
    text-transform: uppercase;
    font-size: 16px;
    color: #666;
}

.faq-left p {
    font-size: 18px;
    font-family: var(--family-font-secondary);
}


.faq-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.faq-item-title h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
}

.faq-item-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(26, 26, 26, 0.1);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--family-font-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.faq-item-title span svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.faq-item-title span.active {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-item-title span.active svg {
    transform: rotate(180deg);
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-content.active {
    max-height: 1500px;
    padding: 15px 0 10px 0;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-content p {
    color: #1a1a1a;
    font-size: 16px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 1;
    margin-bottom: 5px;
}

.faq-item-content ul {
    margin-bottom: 10px;
    padding-left: 5px;
}

.faq-item-content ul li {
    color: #1a1a1a;
    font-size: 15px;
    font-family: var(--family-font-secondary);
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    opacity: 0.9;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.faq-item-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background-color: #1a1a1a;
    border-radius: 50%;
}