﻿/* ====移动端导航==== */
/* 按钮 */
.mobmenu {
    display: none;
}

.mobmenu dl {
    transform: rotateY(180deg);
    margin-right: 10px;
    width: 30px;
    cursor: pointer;
}

.mobmenu dl dd {
    width: 0;
    height: 2px;
    background: #333;
}

.mobmenu dl dd:first-child {
    animation: sjnav 2.4s linear infinite;
}

.mobmenu dl dd:nth-child(2) {
    margin: 6px 0;
    width: 20px;
}

.mobmenu dl dd:last-child {
    animation: sjnav 2.4s linear infinite;
    animation-delay: 0.4s;
}

/* 导航头 */
.mobmenu h4 {
    color: #1a1a1a;
}

.mobmask {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100vh;
    background: rgba(7, 16, 26, 0.8);
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
    transition-delay: 0.2s;
}

.mobmask.active {
    opacity: 1;
    visibility: visible;
}

.mobnavBox {
    padding-bottom: 20px;
    width: 50%;
    height: 100vh;
    position: fixed;
    z-index: 100;
    top: 0;
    left: -50%;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.3s;
    background: #fff;
    visibility: hidden;
}

.mobnavBox.active {
    transition-delay: 0.3s;
    opacity: 1;
    left: 0;
    visibility: visible;
}

.mobCon {
    padding: 0 20px;
}

.mobnavBox .top {
    padding: 10px 20px;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
}

.mobnavBox .top .logo {
    width: 120px;
    height: 100%;
}

.mobnavBox .top .logo img {
    max-width: 100%;
    max-height: 100%;
}

.mobnavBox .top .mobnavclose {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.mobnavBox .top .mobnavclose:before,
.mobnavBox .top .mobnavclose:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 1px;
}

.mobnavBox .top .mobnavclose:before {
    width: 20px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobnavBox .top .mobnavclose:after {
    width: 2px;
    height: 20px;
    transform: translate(-50%, -50%) rotate(225deg);
}

/* 导航搜索 */
.mobsearch {
    margin-top: 30px;
}

.mobsearch div input {
    width: calc(100% - 52px);
    line-height: 40px;
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    padding: 0 12px;
    font-size: 14px;
}

.mobsearch div button {
    width: 42px;
    height: 42px;
    background: #015198;
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
    border: 0;
}

.mobsearch div button img {
    filter: brightness(100);
    -webkit-filter: brightness(100);
}

/* 导航内容 */
.mobnavBox .bottom {
    padding: 6px 0;
}

.mobnavBox .bottom .nav li {
    margin: 12px 0;
}

.mobnavBox .bottom .nav li h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobnavBox .bottom .nav li h3 a {
    display: block;
    text-align: center;
    color: #1a1a1a;
    padding-left: 4px;
}

.mobnavBox .bottom .nav li h3 i {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    color: #333;
    text-align: center;
    font-size: 12px;
    transition: .4s;
    cursor: pointer;
}

.mobnavBox .bottom .nav li h3 i img {
    max-width: 100%;
}

.mobnavBox .bottom .nav li .m-subnav {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 5px;
    display: none;
}

.mobnavBox .bottom .nav li .m-subnav a {
    display: block;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.mobnavBox .bottom .nav li .m-subnav a:before {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 7px;
    transition: all 0.4s;
}

.mobnavBox .bottom .nav li .m-subnav a:after {
    content: "";
    width: 4px;
    height: 4px;
    background: #CCCCCC;
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: 10px;
    transition: all 0.4s;
}

.mobnavBox .bottom .nav li.on h3 a {
    color: #015198;
}

.mobnavBox .bottom .nav li.on h3 i {
    transform: rotate(90deg);
    color: #015198;
}

.mobnavBox .bottom .nav li.on h3 i:before,
.mobnavBox .bottom .nav li.on h3 i:after {
    background: #fff;
}

.mobnavBox .bottom .nav li h3 a:hover,
.mobnavBox .bottom .nav li .m-subnav a:hover {
    color: rgb(148,64,126);
}

.mobnavBox .bottom .nav li .m-subnav a:hover:before {
    border-color: rgb(148,64,126);
}

.mobnavBox .bottom .nav li .m-subnav a:hover:after {
    background: rgb(148,64,126);
}

/* .mobnavBox .bottom .nav li.on .m-subnav {display: block;} */

/* 导航联系方式 */
.moblan a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 44px;
}

.sitebtn {
    display: block;
    border-radius: 4px;
    background-image: linear-gradient(135deg, rgb(148,64,126) 0%, #015198 50%, rgb(148,64,126) 100%);
    overflow: hidden;
    background-size: 200% auto;
    color: #fff;
    text-align: center;
}

.mobinfo {
    margin-top: 20px;
}

.mobinfo h2 {
    color: #1a1a1a;
    font-weight: 700;
}

.mobinfo dl dd {
    display: flex;
    margin-top: 10px;
}

.mobinfo dl dd i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;;
}

.mobinfo dl dd i img {
    max-width: 100%;
}

.mobinfo dl dd p {
    width: calc(100% - 14px);
    padding-left: 10px;
    color: #666;
}

.mobinfo dl dd p a {
    color: #666;
}

.mobinfo dl dd p a:hover {
    color: #015198;
}

/*手机导航按钮*/
@keyframes sjnav {
    0% {
        width: 0;
    }
    25% {
        width: 15px;
    }
    50% {
        width: 30px;
    }
    75% {
        width: 15px;
    }
    100% {
        width: 0;
    }
}


@media screen and (min-width: 200px) and (max-width: 1900px) {

}

/* ======================================================1800px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1800px) {
    /* 关于我们 */
    .abfoSwiper .swjt {
        left: 0;
    }

    .abfoSwiper .swiper-button-next {
        left: auto;
        right: 0;
    }
}

/* ======================================================1600px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1600px) {
}

/* ======================================================1580px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1580px) {

}

/* ======================================================1500px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1500px) {
}

/* ======================================================1450px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1450px) {
}

/* ======================================================1400px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1400px) {
}

/* ======================================================1350px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1350px) {
}

/* ======================================================1300px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1300px) {
    /* 首页 */
    .infiveSlide .hd li {
        width: 240px;
    }

    .infiveSlide .bd li .imgBox {
        height: auto;
    }

    .infiveSlide .bd ul {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .infiveSlide .bd li .con {
        padding: 10px 5px;
        height: auto;
    }
}

/* ======================================================1250px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1280px) {
}

/* ======================================================1200px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1200px) {
    /* 头部 */
    .pcSearch {
        display: none;
    }

    .moblieSearch {
        display: block;
    }

    .headerNav ul li a {
        padding: .2rem .15rem;
    }

    /* 首页 */
    .indexSeven .box {
        flex-wrap: wrap;
    }

    .indexSeven .box .le {
        width: 100%;
    }

    .indexSeven .box .re {
        width: 100%;
    }

    /* 关于我们 */
    .aboutOne .box {
        align-items: center;
    }

    /* 产品详情 */
    .dateCon5-2 .conBox {
        flex-wrap: wrap;
    }

    .dateCon5-2 .conBox .le {
        width: 100%;
    }

    .dateCon5-2 .conBox .re {
        width: auto;
        max-width: 100%;
        margin: auto;
        margin-top: .5rem;
    }


}

/* ======================================================1100px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1100px) {
    /*联系我们  */
    .contact .box .leUs {
        width: 32%;
    }

}

/* ======================================================1028px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1028px) {
    /* 头部 */
    .headerBox .logoCon i {
        display: none;
    }

    .logoCon2 {
        display: none;
    }

    .mobmenu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .heTel .con em {
        display: none;
    }

    .heSearch {
        margin-left: 22%;
    }

    .moblieSearch {
        display: none;
    }

    .headerNav {
        display: none;
    }

    .header-zw {
        display: block;
    }

    .header {
        position: fixed;
        width: 100%;
        left: 0;
        z-index: 99;
        top: 0;
        box-shadow: 1px 1px 10px rgb(0 0 0 / 10%);
    }

    .pc-slide{
        width: 100% !important;
    }
    .yunu-showcase-info{
        width: 95% !important;
    }
    .yunu-showcase-info h1 {
        margin-top: 50px !important;
    }


    /* 底部 */
    .foterNav {
        flex-wrap: wrap;
    }

    .foterre {
        width: 100%;
        margin-top: .5rem;
    }

    /* 首页 */
    .bannerSwiper .swjt img {
        max-width: 60%;
    }

    .bannerSwiper .swiper-pagination {
        bottom: .2rem;
    }

    .bannerSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .indexTwo .box {
        flex-wrap: wrap;
    }

    .indexTwo .cen {
        width: 100%;
        order: -1;
        text-align: center;
        display: none;
    }

    .indexTwo .box dl {
        width: 48%;
    }

    /* 解决方案 */
    .nyMain .box .navle {
        width: 28%;
    }

    .nyMain .conre {
        width: 68%;
    }

    .nyMain .box .navle {
        top: 1.5rem !important;
    }

    .nyMain .box .navle .leTop {
        top: 1.5rem !important;
    }

    /* 产品中心 */
    .proList ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .proDate .dateTop {
        flex-wrap: wrap;
    }

    .dateTop .topLe {
        width: 100%;
    }

    .dateTop .topRe {
        width: 100%;
    }

    .proDateSwiper .swiper-slide img {
        min-height: initial;
    }

    .dateTop .topRe .info .heTel {
        display: flex;
    }

    .dateCon5 ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .dateCon5-1 ul {
        grid-template-columns: repeat(2, 1fr);
    }


}

/* ======================================================960px========================================================= */
@media screen and (min-width: 200px) and (max-width: 960px) {
    /* 首页 */
    .inOneSwiper3 .swiper-slide-active {
        width: 65%;
    }

    .indexThree ul {
        grid-template-columns: repeat(3, auto);
        gap: 0;
    }

    .indexThree ul li:nth-child(n+6) {
        left: 0;
        top: 0;
    }

    .indexFour .box {
        flex-wrap: wrap;
    }

    .indexFour .box .tle img {
        max-width: 100%;
    }

    .indexFour .box .re {
        width: 100%;
        margin-top: .5rem;
    }

    .indexSix ul {
        flex-wrap: wrap;
        justify-content: center;
        /*margin-right: .5rem;*/
    }

    .indexSix ul li {
        margin-left: .5rem;
    }

    /* 成功案例 */
    .caseList ul {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 荣誉资质 */
    .picTure ul {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 关于我们 */
    .aboutOne .box {
        flex-wrap: wrap;
    }

    .aboutOne .le {
        width: 100%;
    }

    .aboutOne .re {
        width: 100%;
        text-align: center;
        margin-top: .3rem;
    }

    /* 新闻列表 */
    .newsList ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsList ul li {
        padding: 4%;
        padding-bottom: .4rem;
    }

    .newsList ul li:nth-child(2n) {
        border-right: 0;
    }

    .newsList ul li:nth-child(3n) {
        border-right: 1px solid #eee;
    }

    /* 详情 */
    .newsDate .box {
        flex-wrap: wrap;
    }

    .newsDate .box .le {
        width: 100%;
    }

    .newsDate .box .re {
        width: 100%;
        margin-top: .5rem;
        display: none;
    }

    /*联系我们  */
    .contact .box {
        flex-wrap: wrap;
    }

    .contact .box > div {
        width: 50%;
    }

    .contact .box .leUs {
        width: 50%;
    }

    .contact .box .reUs {
        width: 100%;
    }

}

/* ======================================================手机端========================================================= */
@media screen and (min-width: 200px) and (max-width: 767px) {
    /* 头部 */
    .heTel {
        display: none;
    }

    .moblieSearch {
        display: none;
    }

    .mobnavBox {
        width: 100%;
    }

    /* 底部 */
    .footer .foterLinks dl .ddBox {
        width: 100%;
        margin-top: .2rem;
    }

    /* .footer .foterLinks dd {background: #015198;margin-right: 1px;margin-top: 1px; color: #fff; padding: 0;}
    .footer .foterLinks dd a {color: #fff; padding: 10px;} */
    /* .footer .foterLinks dd::after {display: none;}
    .footer .foterLinks dd:hover {background: rgb(148,64,126);} */
    /* 首页*/
    .inMore1 a {
        width: 3rem;
        height: .65rem;
    }

    .inOneSwiper1 .swiper-slide {
        width: 25%;
    }

    .inOneSwiper2 {
        padding-bottom: .5rem;
    }

    .inOneSwiper3 .swiper-slide {
        width: auto;
    }

    .inOneSwiper3 .swjt {
        left: 90%;
    }

    .inOneSwiper3 .swjt.swiper-button-prev {
        left: 2%;
    }

    .inOneSwiper3 .con h5 {
        font-size: var(--font20);
    }

    .inOneSwiper3 .con {
        position: relative;
        transform: initial;
        left: 0;
        top: 0;
        width: 100%;
    }

    .indexTwo .box dl {
        width: 100%;
    }

    .indexTwo dl dd {
        margin-top: .5rem;
    }

    .indexTwo dl dd ul li {
        padding-left: .25rem;
    }

    .indexThree ul li .bj2 .tle span {
        font-size: .26rem;
    }

    .infiveSlide {
        flex-wrap: wrap;
    }

    .infiveSlide .hd {
        width: 100%;
        margin-bottom: .3rem;
    }

    .infiveSlide .hd ul {
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: .1rem;
    }

    .infiveSlide .hd li {
        width: 100%;
        height: 40px;
    }

    /* .infiveSlide .bd li .con::after{display: none;} */
    .infiveSlide .bd {
        width: 100%;
        margin-left: 0;
    }

    .indexSix .tel .us span {
        width: 70%;
    }

    .inghtSwiper1 {
        max-width: 100%;
        border-bottom: 3px solid #EAEAEA;
    }

    .inghtSwiper1 .swiper-slide img {
        max-width: 50%;
    }

    .inghtSwiper1 .swiper-slide span {
        font-size: .25rem;
        margin-left: 3px;
    }

    .inghtSwiper1 .swiper-slide {
        padding-bottom: .15rem;
    }

    .inghtSwiper1 .swiper-slide::before {
        height: 3px;
        bottom: -3px;
    }

    .inghtSwiper3 {
        max-width: 85%;
    }

    .inghtSwiper2 .swiper-slide .swjt {
        right: -2px;
    }

    .inghtSwiper2 .swiper-slide .swiper-button-prev {
        left: -2px;
    }

    .indexSeven .box .le {
        animation: none;
        transform: none !important;
        opacity: 1 !important;
    }

    .indexSeven .box .re {
        animation: none;
        transform: none !important;
        opacity: 1 !important;
    }

    .indexSeven .le dl dd a {
        flex-wrap: wrap;
    }

    .indexSeven .le dd .imgBox {
        width: 100%;
    }

    .indexSeven .le dd .con {
        width: 100%;
        margin-top: .3rem;
    }

    .indexSeven .box .setop {
        flex-wrap: wrap;
        margin-bottom: .2rem;
    }

    .indexEight .topBox .text p {
        width: 100%;
    }

    .foterle .foterLogo {
        justify-content: center;
    }

    .foterNav .foterle {
        width: 100%;
    }

    .foterCen {
        margin-top: .5rem;
    }

    /* ==================================================================================内页============================================================= */
    /* 共用部分 */
    .mbx {
        display: none;
    }

    .nyMain {
        margin-top: .3rem;
    }

    .nyMain .box {
        flex-wrap: wrap;
    }

    .nyMain .box .navle .leTop {
        position: static !important;
        top: 0 !important;
        display: none;
    }

    .nyMain .box .navle {
        width: 100%;
        position: static !important;
        top: 0;
    }

    .navTwo > li h5 a {
        background-position-x: 96%;
    }

    .navOne > li h4 i {
        width: .4rem;
        height: .4rem;
    }

    .nyMain .conre {
        width: 100%;
        margin-left: 0;
        margin-top: .2rem;
    }

    .nyMain .navle .tle2 {
        display: none;
    }

    .nyMain .navle .picMarquee {
        display: none;
    }

    .serveHot {
        display: none;
    }

    .txtMarquee {
        display: none;
    }

    .ny-banner img {
        height: 2.5rem;
        object-fit: cover;
    }

    .aboutnav ul {
        flex-wrap: wrap;
    }

    /* 解决方案 */
    .solutionList ul li span {
        font-size: var(--font16);
    }

    .solutionDate .tle {
        margin: .3rem 0;
        margin-top: 0;
    }

    /* 产品详情 */
    .dateBox .swiperBox .swjt {
        right: -7%;
    }

    .dateBox .swiperBox .swiper-button-prev.swjt {
        left: -7%;
    }

    /* 成功案例 */
    .casenav ul {
        flex-wrap: wrap;
    }

    .casenav::after {
        display: none;
    }

    .casenav ul li {
        width: 32%;
    }

    .caseList ul {
        grid-template-columns: repeat(1, 1fr);
    }

    /* 关于我们 */
    .aboutTwo ul {
        flex-wrap: wrap;
    }

    .aboutTwo ul li {
        width: 100%;
    }

    .aboutTwo ul li .icBox img {
        max-width: 10%;
    }

    .aboutThree ul {
        flex-wrap: wrap;
    }

    .aboutThree ul li {
        width: 100%;
        margin-top: .25rem;
    }

    .aboutThree ul li::after {
        display: none;
    }

    /* 新闻列表 */
    .questionList {
        margin-top: .5rem;
    }

    .questionList ul li .tle .icBox {
        width: 5.5%;
    }

    .questionList ul li .tle .icBox img {
        max-width: 100%;
    }

    /* 联系我们 */
    .contact .box .leUs {
    }

    .indexThree ul li {
        width: 3.1rem;
        height: 3.1rem;
        background: #fff;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.08);
        margin-bottom: 0.3rem;
        border-radius: 0.5rem;
        overflow: hidden;
    }

    .indexThree ul li .con h5 {
        font-size: 0.28rem;
    }

    .indexThree ul li {
        clip-path: inherit;
    }

    .foterLogo {
        display: none;
    }

    .proDate .dateBox .titleimg {
        max-width: fit-content;
        margin-top: 0.5rem
    }

    .proDate .dateBox .conTle h4 {
        font-size: 0.4rem;
    }
}

@media screen and (min-width: 200px) and (max-width: 640px) {
    /* 首页 */
    .indexThree ul {
        grid-template-columns: repeat(2, auto);
        gap: 0;
    }

    .indexThree ul li:last-child {
        display: none;
    }

    /*联系我们  */
    .contact .box > div {
        width: 100% !important;
    }

    .contact .cenUs .more a {
        min-width: 160px;
    }

}

@media screen and (min-width: 200px) and (max-width: 500px) {

}

@media screen and (min-width: 200px) and (max-width: 450px) {
}

@media screen and (min-width: 200px) and (max-width: 300px) {

}
