.ht-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ht-middel-contain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 150px;
    margin: 100px;
}

.ht-middel-contain-item {
    width: 100%;
    display: flex;
    flex-direction: row;


    justify-content: space-around;
    align-items: center;
    /* gap: 10px; */
}

.ht-middel-contain-left,
.ht-middel-contain-right {
    width: 45%;
}

.ht-middel-contain .ht-mega-left-logo {
    width: 90%;
    object-fit: cover;
}

.ht-middel-contain .ht-mega-left-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 60px;
}

.ht-middel-contain .ht-mega-left-context {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}


.ht-middel-contain .right-item {
    display: flex;
    flex-direction: row;

    height: 100px;
    color: var(--text);
    text-decoration: none;
    background: #eef3fb;
    justify-content: flex-start;

    margin: 10px 0;
}

.ht-middel-contain .ht-mega-item-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* align-items: center; */
    /* gap: 10px; */
    margin:0 20px;
}

.ht-middel-contain .right-item {
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease, background 0.5s ease;
}

.ht-middel-contain .right-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #59b7f9;
    transition: left 1s ease;
    z-index: 0;
}

.ht-middel-contain .right-item:hover {
    color: #fff;
    background: #a7dbff;
    box-shadow: 0 4px 12px rgba(73, 72, 239, 0.3);
}

.ht-middel-contain .right-item:hover::before {
    left: 0;
}

.ht-middel-contain .right-item>* {
    position: relative;
    z-index: 1;
}

.ht-middel-contain .ht-mega-item-logo {
    width: 80px;
    object-fit: contain;
    margin: 0 20px;
}

.ht-middel-contain .ht-mega-item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 60px;

}

.ht-middel-contain .ht-mega-item-context {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}



.blue-background-action-contain {}

/* //蓝色横线特效 */
.blue-background-action-title {
    position: relative;
    display: inline-block;
}

.blue-background-action-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 10px;
    background-color: #a7dbff;
    transition: width 0.5s ease;
}

.blue-background-action-contain:hover .blue-background-action-title::after {
    width: 100%;
}

/* //缩放图片 */
.blue-background-action-contain .blue-background-action-img {
    transition: transform 1s ease;
}

.blue-background-action-contain:hover .blue-background-action-img {
    transform: scale(1.05);
    transform-origin: left bottom;
}

.blue-background-action-contain:not(:hover) .blue-background-action-img {
    transform: scale(1);
    transform-origin: left bottom;
}




.ht-why-choose-us {
    /* margin-top: 150px; */
    margin-left: 150px;
    margin-right: 150px;
    margin-bottom: 50px;
    padding-top: 100px;
}

.ht-why-choose-us .ht-why-choose-us-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 60px;
}

.ht-why-choose-us .ht-why-choose-us-context {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}




.ht-why-contain {
    margin: 0px 150px 0px 150px;
    /* width: 100%; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;

}

.ht-why-contain .ht-why-item {
    flex: 0 0 calc((100% - 40px) / 3);
    /* 减去两个 gap 后三等分，确保每行三个 */
    height: 300px;
    /* background-color: #7777e0; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.ht-why-contain .ht-why-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.ht-why-contain .ht-why-item-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 60px;
}

.ht-why-contain .ht-why-item-context {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}




/* //行业案例样式 */

.ht-why-contain .ht-industry-item {
    background-color: #eef3fb;
    ;
    flex: 0 0 calc((100% - 40px) / 3);
    /* 减去两个 gap 后三等分，确保每行三个 */
    height: 200px;
    width: 400px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;

    display: flex;
    flex-direction: row;

}

.ht-why-contain .ht-industry-item:hover {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.ht-why-contain .ht-industry-item-img {
    height: 140px;
    object-fit: contain;
    margin: 20px;
}



.ht-why-contain .ht-industry-item-word {
    margin: 30px;
}

.ht-why-contain .ht-industry-item-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
}

.ht-why-contain .ht-industry-item-context {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    text-align: left;
}


.x-main-contain {
    margin: 0 auto;
    position: relative;
    width: 458px;
    height: 458px;
}

.x-main-contain .x {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 50%;
}

.x-main-contain .x-index-img {
    /* width: 100px; */
    height: 158px;
    object-fit: cover;
}

.x-main-contain .x-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 60px;
}


.x-main-contain .icon {
    position: absolute;
    display: flex;
    align-items: center;
}

.x-main-contain .icon1 {
    left: -327px;
    top: 11px;
}

.x-main-contain .icon2 {
    left: -353px;
    top: 146px;
}

.x-main-contain .icon3 {
    left: -242px;
    top: 275px;
}

.x-main-contain .icon4 {
    right: -302px;
    top: 275px;
}

.x-main-contain .icon5 {
    right: -299px;
    top: 146px;
}

.x-main-contain .icon6 {
    right: -339px;
    top: 11px;
}





.ht-footer {
    background-color: #0f1013;
    color: #fff;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding: 50px 0px;
}

.ht-footer-left {
    width: 70%;

    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding-left: 150px;
}   

.ht-footer-right {
    width: 30%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.ht-footer-link{
    color: #fff;
    /* text-decoration: none; */
}







/* 











header









header









header









header









header











header




 */






/* 修改layui颜色 */
.layui-nav.layui-bg-gray .layui-this a {
    color: #a7dbff;
}

.layui-nav .layui-this:after,
.layui-nav-bar {
    background-color: #a7dbff;
}

.layui-nav * {
    font-size: 16px;
}

.main-header-container{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;

}

.layui-bg-gray {
    background-color: rgba(245, 245, 255, 0) !important;
}

.ht-main-logo {
    width: 300px;
    object-fit: contain;
}


/* 全屏下拉容器 */
.mega-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    width: 100vw;
    background: rgba(255, 250, 255, 0.85); /* 半透明加点蓝 */
    border-top: 1px solid rgba(245, 245, 255, 0.6);
    box-shadow: 0 8px 24px rgba(31, 35, 40, 0.08);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .32s ease, opacity .24s ease, transform .24s ease;
    z-index: 999;
}

.mega-dropdown.open {
    max-height: 500px;
    /* 根据内容高度可调整 */
    opacity: 1;
    transform: translateY(0);
}

.mega-dropdown .mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content:space-around;
    /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
    gap: 8px 16px;
}

.mega-dropdown .maga-inner-column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}



.mega-dropdown .mega-item {
    display: flex;
    flex-direction: row;
    width: 350px;
    height: 100px;
    color: var(--text);
    text-decoration: none;
    background: #eef3fb;
}

.mega-dropdown .ht-mega-item-right{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* align-items: center; */
    /* gap: 10px; */
}

.mega-dropdown .mega-item:hover {
    color: #fff;
    /* border-color: var(--primary); */
    background:#a7dbff;
    box-shadow: 0 4px 12px rgba(73, 72, 239, 0.3);
}

.mega-dropdown .ht-mega-item-logo{
    width: 80px;
    object-fit: contain;
}

.mega-dropdown .ht-mega-item-title{
    font-size: 18px;
    font-weight: 600;
    
}
.mega-dropdown .ht-mega-item-context{
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}




.ht-vertical-border{
    width: 2px;
    background-color: #ececec;
}
.ht-QR-logo{
    margin-top: 60px;
    width: 100px;
    object-fit: contain;
}


 /* 轮播图文字样式新增 */
        .carousel-item-wrap {
            position: relative;
            width: 100%;
            height: 100%;
        }
     
        .carousel-text {
            position: absolute;
            left: 5%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            color: #fff;
            max-width: 600px;
            background: rgba(0, 0, 0, 0.5);
            padding: 20px 30px;
            border-radius: 8px;
        }
        .carousel-text-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .carousel-text-desc {
            font-size: 16px;
            line-height: 1.6;
        }

