/**
  Description: 荆棘鸟科技 | AI 能力演示平台 样式
  Version: 0.0.1
  FileName: ai-demo-page
  Date: 2025-01-16 15:26:52 星期四
*/

.ai-demo-page {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
}

.ai-demo-page .footer-area {
    margin-top: 0;
    box-sizing: border-box;
}


.ai-demo-page .page-top {
    height: 1000px;
    background: url(/images/AI-DEMO/2025/bg1.png) no-repeat center;
    background-size: 100% 100%;
}

.ai-demo-page .meun-left {
    position: fixed;
    /* top: 249px; */
    top: 15%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 11px;

    width: 62px;
    height: 428px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(110, 140, 184, 0.2);
    border-radius: 31px;
}

.ai-demo-page .meun-left .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-demo-page .meun-left .menu-item .img-active {
    display: none;
}

/* 激活状态的图标（保持原有） */
.ai-demo-page .meun-left .menu-item.active img {
    width: 39px;
    height: 24px;
}
.ai-demo-page .meun-left .menu-item.active .img-default {
    display: none;
}

.ai-demo-page .meun-left .menu-item.active .img-active {
    display: block;
}

.ai-demo-page .meun-left .menu-item img {
    width: 39px;
    height: 24px;
}

/* 文字颜色保持不变 */
.ai-demo-page .meun-left .menu-item.active .meun-text {
    font-weight: 400;
    font-size: 16px;
    color: #2880F7 !important;
}

.ai-demo-page .meun-left .menu-item:not(.active) .meun-text {
    font-weight: 400;
    font-size: 16px;
    color: #43435F !important;
}

.ai-demo-page .page-top-header {
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
}

.ai-demo-page .page-top-header .wrap {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-top-header .header-link {
    width: 140px;
    height: 100%;
    background: #3276FF;
    text-align: center;
    line-height: 80px;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
    display: none;
}

.page-top-header .header-link:hover {
    background: rgba(41, 146, 255, 1);
}

.page-top .page-top-main {
    height: calc(100% - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-top .wrap-con {
    width: 100%;
    height: 600px;
}

.acv-log-img {
    width: 600px;
    height: 70px;
}

.acv-log-img img {
    height: 100%;
}

.acv-logo-desc {
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 24px;
    color: #43435F;
    line-height: 24px;
}

.acv-logo-desc span {
    font-weight: 400;
}


.ai-demo-page .page-midd {
    min-height: 750px;
    position: relative;
    margin-bottom: 50px;
}

.ai-demo-page .page-midd-blue-bg {
    width: 100%;
    height: 600px;
    background: url(/images/AI-DEMO/2025/bg-2.png) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.page-midd-main .space {
    height: 75px;
}

.yu-tu-logo {
    width: 350px;
    height: 60px;
}

.yu-tu-logo img {
    width: 100%;
    height: 100%;
}

.yu-tu-desc {
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 24px;
    margin: 23px 0 33px 0;
}

.yu-tu-btn {
    display: block;
    width: 224px;
    height: 54px;
    background: rgba(71, 148, 228, 1);
    border-radius: 8px;
    font-weight: 400;
    font-size: 26px;
    color: #FFFFFF;
    text-align: center;
    line-height: 54px;
    transition: all 0.2s ease-in-out;
}

.yu-tu-btn:hover {
    background: rgba(41, 146, 255, 1);
}

.algorithm-desc {
    margin-top: 80px;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 60px;
}

.algorithm-desc .bold {
    font-size: 36px;
    font-weight: 400;
}

.algorithm {
    width: 100%;
    margin-top: 20px;
}


.algorithm-item:nth-child(1) .algorithm-name {
    border-radius: 8px 0 0 8px;
}

.algorithm-item:nth-last-child(1) .algorithm-name {
    border-radius: 0 8px 8px 0;
}

.algorithm-item:nth-last-child(1) .algorithm-name::after {
    height: 0;
}


.algorithm-type {
    display: flex;
    justify-content: flex-start;
}

.algorithm-item .algorithm-name {
    position: relative;
    padding: 0 25px;
    height: 60px;
    background: #FFFFFF;
    font-weight: 400;
    font-size: 22px;
    color: #5A5A65;
    line-height: 60px;
    cursor: pointer;
}

.algorithm-item .algorithm-name:hover {
    color: rgba(22, 130, 221, 0.8);
}

.algorithm-item .algorithm-name::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    width: 2px;
    height: 20px;
    background: rgba(143, 162, 178, 1);
}


.algorithm-item.is-active .algorithm-name {
    color: rgba(22, 130, 221, 1);
}

.algorithm-item.is-active .algorithm-child {
    display: block;
}

.algorithm-child {
    /* display: flex; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    margin-top: 27px;
    min-height: 200px;
}

.child-item-con {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
}

.child-item-con.is-show {
    display: flex;
}

.child-item {
    width: 280px;
    height: 180px;
    margin-bottom: 15px;
    background: rgba(245, 246, 250, 1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.child-item.empty {
    background: none;
    height: 0;
    overflow: hidden;
}


.child-info {
    display: flex;
    justify-items: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.child-con {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.child-item .icon {
    /* width: 60px; */
    height: 35px;
}

.child-item .name {
    font-weight: 400;
    font-size: 18px;
    color: #5A5A65;
    margin-top: 10px;
}

.child-file {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
}

.child-item:hover {
    background: rgba(233, 233, 233, 1);
}

.child-item.is-show-file .child-file {
    display: block;
}

/* .child-item:hover .child-file {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
} */

.child-item .child-file .video-bg {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: black;
    display: flex;
    justify-items: center;
    align-items: center;
}
.child-item .child-file .imgs-bg {
    width: 100%;
    height: 100%;
}

.img-midd {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.img-midd:hover .imgs {
    transform: scale(1.2);
    transition: all ease-in-out .2s;
}

.child-item .child-file .imgs {
    max-height: 180px;
}


.ai-demo-page .page-bottm {
    height: 970px;
    background: url(/images/AI-DEMO/2025/bg2.png) no-repeat center;
    background-size: 100% 100%;
}

.ai-demo-page .page-midd_next {
    height: 970px;
}

.page-bottm-main .space {
    height: 50px;
}


.yu-kong-logo {
    width: 320px;
    height: 65px;
}

.yu-kong-logo img {
    width: 100%;
    height: 100%;
}

.page-midd_next-main .space {
    height: 50px;
}

.yu-yi-logo {
    width: 320px;
    height: 65px;
}

.yu-yi-logo img {
    width: 100%;
    height: 100%;
}

.yu-yi-desc {
    font-weight: 400;
    font-size: 24px;
    color: #5A5A65;
    line-height: 36px;
    margin-top: 25px;
    letter-spacing: -0.5px;
}

.yu-yi-btn {
    margin-top: 55px;
    display: block;
    width: 224px;
    height: 54px;
    background: #2781F0;
    border-radius: 8px;
    font-weight: 400;
    font-size: 26px;
    color: #FFFFFF;
    text-align: center;
    line-height: 54px;
    transition: all 0.2s ease-in-out;
}

.yu-yi-btn:hover {
    background: rgba(41, 146, 255, 1);
}

.page-midd_next-main .yuyi-list {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    height: 430px;
    gap: 15px;
}

.page-midd_next-main .yuyi-item {
    padding: 40px 30px;
    width: 456px;
    height: 550px;
    background: rgba(241, 245, 250, 0.5);
    border-radius: 20px;
}

.yuyi-item-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 21px;
}

.text_top {
    font-weight: bold;
    font-size: 36px;
    color: #2781F0;

}

.text_top_mid {
    font-weight: bold;
    font-size: 36px;
    color: #F8841C;

}

.text_top_end {
    font-weight: bold;
    font-size: 36px;
    color: #47A85B;

}

.text_bottom {
    padding: 0 0 0 10px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
}

.text_bottom_title {
    font-weight: bold;
    font-size: 17px;
    color: #0E1558;
    line-height: 24px;
}

.text_bottom_content {
    margin-top: 10px;
    color: #5A5A65;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: -1px;
}

.yu-kong-desc {
    font-weight: 400;
    font-size: 24px;
    color: #5A5A65;
    line-height: 36px;
    margin-top: 25px;
}

.yu-kong-btn {
    margin-top: 55px;
    display: block;
    width: 224px;
    height: 54px;
    background: #2781F0;
    border-radius: 8px;
    font-weight: 400;
    font-size: 26px;
    color: #FFFFFF;
    text-align: center;
    line-height: 54px;
    transition: all 0.2s ease-in-out;
}

.yu-kong-btn:hover {
    background: rgba(41, 146, 255, 1);
}

.page-bottm-main .desc-list {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    height: 430px;
}

.page-bottm-main .desc-item {
    position: relative;
    left: -10px;
    width: 320px;
    height: 370px;
    padding: 20px 30px;
}

.page-bottm-main .desc-item:nth-child(2) {
    top: 90px;
}

.page-bottm-main .desc-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url('/images/AI-DEMO/2025/kuang-line.png') no-repeat center;
    background-size: 100% 100%;
}

.page-bottm-main .desc-item .title p {
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 24px;
    color: rgba(14, 21, 88, 1);
    line-height: 30px;
    font-family: SourceHanSansCN-Medium;
}

.page-bottm-main .desc-item .text {
    margin-top: 20px;
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: 16px;
    color: rgba(67, 67, 95, 1);
    line-height: 24px;
    font-family: SourceHanSansCN-Medium;
}


.ai-demo-list {
    width: 100%;
    height: 376px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left {
    height: 100%;
    width: 270px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.left > div {
    height: calc(50% - 10px);
    width: 100%;
}

.center {
    height: 100%;
    width: 334px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.right {
    height: 100%;
    width: calc(100% - 270px - 334px - 40px);
}

.item-list {
    height: 100%;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    color: rgba(16, 16, 16, 1);
}

.item-list:hover {
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
}

.item-white {
    color: #FFFFFF;
}

.item-con {
    position: absolute;
    bottom: 20px;
    left: 25px;
}

.item-name {
    font-size: 22px;
    font-weight: 400;
}

.item-icon {
    margin-bottom: 10px;
}

.item-1 .item-name {
    font-weight: 500;
}

.center > div {
    height: calc(50% - 10px);
    width: 100%;
}

.center .item-list {
    height: 100%;
    width: 100%;
}

.center .cen-t {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center .cen-t .item-list {
    height: 100%;
    width: calc(50% - 10px);
}

.right {
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
}

.right .item-list {
    width: calc(33% - 10px);
    height: 178px;
}


.items {
    position: relative;
    height: 100%;
    width: calc(20% - 10px);
    overflow: hidden;
}

.items:hover .show-con {
    display: block;
    animation: topIn 0.5s;
}

.items:active .show-con {
    display: block;
    animation: topIn 0.5s;
}

.items.is-active .show-con {
    display: block;
    animation: topIn 0.5s;
}

.items.item-industry-5 .show-con {
    padding: 0;
}

.items.item-industry-5 .show-title {
    margin-bottom: 18px;
    padding: 22px;
}

.items.item-industry-5 .show-item-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

.items.item-industry-5 .item-lists {
    line-height: 42px;
    font-size: 20px;
    text-align: center;
    width: calc(50% - 3px);
}

/* .items.item-industry-5 .show-item-list {
    height: calc(100% - 100px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.items.item-industry-5 .show-item-list::-webkit-scrollbar {
    display: none;
} */

.out-con {
    width: 100%;
    height: 68%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.out-con .title {
    font-family: FZZongYi-M05;
    font-weight: bold;
    font-size: 46px;
    color: #0E1558;
    line-height: 24px;

    text-align: center;
    margin-top: 90px;
    margin-bottom: 20px;
}

.out-con .sub-title {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    color: rgba(74, 76, 102, 1);
    line-height: 24px;
}

.show-con {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    display: none;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background: url(../images/2024/AI-DEMO/blue-bg.png) no-repeat center;
    background-size: 100% 100%;
    padding: 22px;
    box-sizing: border-box;
}

.show-title {
    display: flex;
    justify-items: flex-start;
    align-items: center;
    margin-bottom: 60px;
}

.title-icon {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.title-word {
    font-family: FZZongYi-M05;
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 40px;
}

.item-lists {
    font-family: FZZongYi-M05;
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 54px;
    cursor: pointer;
    margin-bottom: 5px;
}

.item-lists:hover {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
}

@keyframes topIn {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width: 769px) {
    .wrap {
        top: 2%;
        padding-bottom: 50px;
    }

    .ai-demo-list {
        flex-wrap: wrap;
        flex-direction: column;
        height: auto;
    }

    .items {
        width: 90%;
        min-height: 260px;
    }

    .out-con .title {
        margin-top: 20px;
    }

    .show-con .show-title {
        margin-bottom: 20px;
    }


}


@media screen and (min-width: 769px) and (max-width: 992px) {
    body {
        min-width: 700px;
    }

    .ai-demo {
        align-items: flex-start;
    }

    .wrap {
        top: 5%;
        width: 700px;
    }

    .ai-demo-title img {
        height: 30px;
        width: auto;
    }

    .ai-demo-word {
        font-size: 25px;
        line-height: 32px;
        margin: 10px auto 50px;
    }

    .ai-demo-list {
        height: 200px;
    }

    .out-con .title {
        font-size: 16px;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .out-con .sub-title {
        font-size: 12px;
    }

    .show-con {
        padding: 10px;
    }

    .show-title {
        margin-bottom: 20px;
    }

    .title-icon {
        height: 26px;
    }

    .title-word {
        font-size: 15px;
        line-height: 24px;
    }

    .item-lists {
        font-size: 16px;
        line-height: 32px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    body {
        min-width: 900px;
    }

    .ai-demo {
        align-items: flex-start;
    }

    .wrap {
        top: 5%;
        width: 900px;
    }

    .ai-demo-list {
        height: 300px;
    }

    .out-con .title {
        font-size: 26px;
    }

    .out-con .sub-title {
        font-size: 16px;
    }

    .title-icon {
        height: 30px;
    }

    .title-word {
        font-size: 18px;
        line-height: 32px;
    }

    .item-lists {
        font-size: 16px;
        line-height: 45px;
    }

    .show-title {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1367px) {
    body {
        min-width: 1200px;
    }

    .wrap {
        top: 2%;
        width: 1100px;
    }

    .out-con .title {
        font-size: 30px;
    }

    .title-icon {
        height: 30px;
    }

    .title-word {
        font-size: 24px;
    }

    .item-lists {
        font-size: 20px;
    }
}

@media screen and (min-width: 1367px) and (max-width: 1440px) {
    body {
        min-width: 100%;
    }


    .wrap {
        top: -1%;
    }

}

/* 新增响应式适配 */
@media screen and (min-width: 1440px) {
    .ai-demo-page .meun-left {
        /* 方案一：相对视口居中 */
        left: calc(50% - 750px); /* 根据内容区域宽度动态计算 */
        /* 方案二：固定间距（根据实际布局调整） */
        /* left: calc((100vw - 1440px)/2 + 200px); */

    }
}

/* 新增响应式适配 */
@media screen and (max-width: 1440px) {
    .ai-demo-page .meun-left {
        padding: 40px 0px;
        left: 22px;
        width: 45px;
        height: 370px;
        transition: 0.2s ease ;

    }



    /* 激活状态的图标（保持原有） */
    .ai-demo-page .meun-left .menu-item.active img {
        width: 32px;
        height: 20px;
    }

    .ai-demo-page .meun-left .menu-item img {
        width: 32px;
        height: 22px;
    }

    /* 文字颜色保持不变 */
    .ai-demo-page .meun-left .menu-item.active .meun-text {
        font-weight: 400;
        font-size: 15px;
        color: #2880F7 !important;
    }

    .ai-demo-page .meun-left .menu-item:not(.active) .meun-text {
        font-weight: 400;
        font-size: 15px;
        color: #43435F !important;
    }
}