/* 顶部样式开始 */

@media screen and (min-width:681px) {
    .hd-out {
        background: #181723;
        color: white;
        border-bottom: 1px solid #848484;
        opacity: 1;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        position: fixed;
    }
    .hd {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        height: 50px;
    }
    .logo img {
        width: auto;
        height: 100%;
    }
    .hd-right {
        width: 70%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .hdnav {
        display: flex;
        justify-content: space-between;
        width: 80%;
    }
    .hdnav-li {
        position: relative;
        width: 100%;
        text-align: center;
        height: 50px;
        line-height: 50px;
        padding: 6px 0; 
    }
    .hdnav-a {
        font-size: 16px;
    }
    .hdnav-a:hover {
        color: #10A56E;
    }
    
    .hdnav-box {
        position: absolute;
        background: rgb(2, 92, 171);
        color: white;
        width: 200%;
        opacity: 0;
        top: 101%;
        transition: all 0.3s;
        height: 0;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .hdnav-box li {
        line-height: 28px;
        width: 50%;
        box-sizing: border-box;
        border-top: 1px solid white;
        padding: 4px 0;
    }
    .hdnav-box li:hover {
        color: #10A56E;
    }
    .hdnav-box li:nth-child(2n) {
        border-left: 1px solid white;
    }
    .hdnav-box li:nth-child(1), .hdnav-box li:nth-child(2) {
        border-top: none;
    }
    .hdphone i {
        font-size: 18px;
    }
    .hdphone span {
        margin-left: 5px;
        font-weight: bold;
        font-size: 18px;
        color: #10A56E;
    }
    .hdaniu {
        display: none;
    }
    /* .hdaniu {
        display: none;
        font-size: 14px;
        position: relative; 
        width: 17px;
        height: 17px;
    }
    .hdaniu div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .hdaniu div i {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 17px;
    }
    .hdaniu1 {
        display: none;
    }
    .hdaniu2 {
        display: block;
    }
    .hdnavclose {
        display: none;
    } */
    
    .hdnav>li:hover .hdnav-box{
        opacity: 1;
        height: auto;
    }
    .hdnav-li i {
        display: none;
    }
}
/* 顶部自适应 */
@media screen and (max-width:680px) {
    .hd-out .con {
        padding: 0 10px;
        background: #10A56E;
        color: white;
    }
    .hd {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        height: 40px;
        padding: 5px 0;
    }
    .logo img {
        height: 100%;
        width: auto;
    }
    .hd-right {
        width: 52%;
    }
    .hdphone {
        font-weight: bold;
        font-size: 16px;
    }
    .hdphone i {
        margin-right: 0px;
        transform: rotate(20deg);
        
    }
    .hdaniu {
        position: fixed;
        right: 15px;
        top: 9px;
        z-index: 999;
        background: #10A56E;
        height: 32px;
        width: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 22px;
        border-radius: 50%;
        transition: all 0.3s;
    }
    
    .hdaniu-active {
        transform: rotate(180deg);
        background: white;
        color: #10A56E;
    }
    .hdaniu i {
        display: block;
        height: 24px;
    }
    .hdnav {
        display: none;
        position: fixed;
        width:100vw;
        height: 100vh;
        z-index: 999;
        background: #10A56E;
        left: 0;
        top: 0;
        box-sizing: border-box;
        padding: 60px 30px;
    }
    .hdnav-li {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        line-height: 45px;
        font-size: 16px;
        flex-wrap: wrap;
    }
    .hdnav-li:nth-child(5) i {
        display: none;
    }
    .hdnav-li:nth-child(5) a {
        width: 100%;
    }
    .hdnav-li a {
        width: 88%;
    }
    .hdnav-li i {
        padding: 10px 8px 10px 20px;
        transition: all 0.3s;
    }
    .hdnav-li-i-active {
        transform: rotate(90deg);
    }
    .hdnav-box {
        display: none;
        width: 100%;
        padding-bottom: 15px;
    }
    .hdnav-box li {
        font-size: 14px;
        line-height: 30px;
        box-sizing: border-box;
        padding: 0 15px;
        width: 50%;
        float: left;
    }
    .hdnav-box li:nth-child(2) {
        float: right;
    }
    .hdnav-box li a {
        display: block;
        width: 100%;
    }
    
}




/* 顶部样式结束 */


/* 首页banner样式开始 */

.lb-out .swiper {
    width: 100%;
    height: 100%;
}
.lb-out .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 40px !important;
    height: 4px !important;
    border-radius: 0 !important;
}
.lb-out .swiper-pagination-bullet-active {
    background: white !important;
}
.lb-out {
    position: relative;
}


/* 首页banner样式结束 */


/* 标题样式开始 */
.title1 {
    text-align: center;
}
.title1 dt {
    font-size: 35px;
    color: #2E3B90 ;
    letter-spacing: 3px;
    font-weight: bold;
}
.title1 dt span {
    color: #10A56E;
}
.title1 dd {
    font-size: 15px;
    color: #999999;
    margin-top: 12px;
    line-height: 20px;
    letter-spacing: 2px;
}

/* 标题样式结束 */

/* 页面底部样式开始 */
@media screen and (min-width:681px) {
    .ft-out {
        padding: 40px 0 25px;
        background: #222222;
        color: white;
    }
    .ft {
        display: flex;
        justify-content: space-between;
        padding-bottom: 20px;
    }
    .ft-left {
        width: 25%;
    }
    .ft-logo {
        width: 60%;
        margin-bottom: 40px;
    }
    .ft-wx {
        display: flex;
        justify-content: space-around;
    }
    .ft-wx-item {
        width: 40%;
        color: #777;
        text-align: center;
    }
    .ft-wx-item p {
        margin-top: 8px;
    }
    .ft-right {
        width: 70%;
        display: flex;
        justify-content: space-between;
    }
    .ft-right-item i {
        margin-right: 8px;
    }
    .ft-right-item dd {
        color: #777;
        margin-top: 10px;
    }
    
    .ft-right-item dd:nth-child(6) a{
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .ft-right-item dd:nth-child(6) a img {
        width: 60px;
    }
    .ft-right-item dd:nth-child(6) a span {
        font-size: 30px;
        margin-left: 20px;
        color: white;
        letter-spacing: 3px;
    }
    .yl-out {
        padding: 40px 0 30px;
        color: #777;
        font-size: 13px;
    }
    .yl {
        max-width: 1300px;
        margin: auto;
    }
    .ftxx-out {
        border-top: 1px solid #4D4D4D;
        text-align: center;
        padding-top: 25px;
        color: #777;
    }
}

@media screen and (max-width:680px) {
   .ft-out {
    display: none;
   }
}

/* 页面底部样式结束 */


/* 手机端底部导航开始 */
.m-ft-out {
    background: #10A56E;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 80%;
    z-index: 997;
    display: none;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 18.5%;
}
.m-ft {
    box-sizing: border-box;
    padding: 0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
}
.m-ft-item {
    text-align: center;
    width: 50%;
    border-left: 1px solid#fff;
    padding: 8px 0;
}
.m-ft-item:first-child {
    border-left: none;
}
.m-ft-item div i{
    font-size: 20px;
    color: white;
}
.m-ft-item p {
    font-size: 12px;
    font-weight: bold;
    color: white;
    padding: 0px 0 0;
}
@media screen and (max-width:680px) {
    .m-ft-out {
        display: block;
    }
 }
 


/* 手机端底部导航结束 */




/* 首页应用场景模块 */
.index1-out {
    padding: 80px 0;
    background: #F6f6f6;
    position: relative;
}
.index1 {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.index1-item {
    box-sizing: border-box;
    width: 25%;
    border-left: 1px solid #CACACA;
}
.index1-item:first-child {
    border-left: none;
}
.index1-title {
    text-align: center;
    transition: all 0.3s;
    transform: translateY(0);
}
.index1-item:hover .index1-title{
    transform: translateY(-6px);
}
.index1-title dt {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
    transition: all 0.3s;
}
.index1-item:hover .index1-title dt {
    color: #FF7019;
}
.index1-title dd {
    font-size: 13px;
    color: #666666;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  
    box-sizing: border-box;
    padding: 0 15px;
}
.index1-con {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 0 40px;
    transition: all 0.3s;
    transform: translateY(0);
}
.index1-item:hover .index1-con{
    transform: translateY(-6px);
}
.index1-con-item {
    width: 50%;
    text-align: center;
    box-sizing: border-box;
    padding: 10px 0;
    color: #333;
    transition: all 0.3s;
}
.index1-con-item:hover a{
    color: #10A56E;
}
.index1-con-item:nth-child(1) {
    border-right: 1px solid #CACACA;
    border-bottom: 1px solid #CACACA;
}
.index1-con-item:nth-child(2) {
    border-bottom: 1px solid #CACACA;
}
.index1-con-item:nth-child(3) {
    border-right: 1px solid #CACACA;
} 
.index1-con-item i {
    font-size: 30px;
}
.index1-con-item p {
    margin-top: 10px;
}
@keyframes indexia {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media screen and (max-width:680px) {
    .index1-out {
        padding: 40px 0;
    }
    .index1 {
        margin-top: 15px;
        transition: all 0.6s;
    }
    .index1-item {
        width: 100%;
        padding: 0 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-left: none;
        margin-top: 20px;
        padding-bottom: 10px;
        border-bottom:  1px solid #CACACA;
    }
    .index1-title {
        width: 56px;
        border-right: 1px solid #CACACA;
    }
    .index1-title dt {
        font-size: 19px;
        margin-bottom: 8px;
        color: #10A56E;
    }
    .index1-title dd {
        font-size: 12px;
        line-height: 14px;
        display: none;
        width: 80%;
        margin: 5px auto 0;
    }
    .index1-con {
        margin-top: 0px;
        padding: 0 5px;
        width: 80%;
    }
    .index1-con-item {
        width: 23%;
        border: none !important;
        padding: 0 0;
    }
    .index1-con-item i {
        font-size: 24px;
    }
    .index1-con-item p {
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .index1-xia i { 
        display: block;
    }
}


/* 首页应用场景模块结束 */



/* 首页解决方案模块开始 */
.index2-out {
    padding: 80px 0;
}
.index2 {
    margin-top: 50px;
}
.index2-list1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index2-list1-left {
    width: 58%;
    background: url(../images/t3.jpg) no-repeat center ;
    background-size: cover;
}
.index2-list1-right {
    width: 40%;
    background: url(../images/t5.jpg) no-repeat center ;
    background-size: cover;
}
.index2-list2 {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
}
.index2-list2-item {
    width: 32%;
}
.index2-list2-item:nth-child(1) {
    background: url(../images/t6.jpg) no-repeat center ;
    background-size: cover;
}
.index2-list2-item:nth-child(2) {
    background: url(../images/t1.jpg) no-repeat center ;
    background-size: cover;
}
.index2-list2-item:nth-child(3) {
    background: #212738 ;
    background-size: cover;
}
.index2-item {
    border-radius: 8px;
    color: white;
    overflow: hidden;
    transition: all 0.3s;
    transform: translateY(0);
}
.index2-item:hover {
    box-shadow: 3px 3px 4px rgba(51, 51, 51, 0.4);
    transform: translateY(-3px);
}

.index2-item dt {
    border-radius: 10px;
    font-size: 30px;
    margin-bottom: 20px;
    background: rebeccapurple;
    display: inline-block;
    padding: 5px 30px;
    box-sizing: border-box;
}
.index2-item dd {
    margin-bottom: 58px;
    text-align: justify;
}

.index2-item-in1 {
    height: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: linear-gradient(135deg, #2E3B90 0%,#2e3b904f  100%);
    background: #2E3B90;
}
.index2-item-in2 {
    height: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: linear-gradient(135deg, #10A56E 0%,#09848a50 100%);
     background: #10A56E;
}

.index2-item-in3 {
    height: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: linear-gradient(135deg, #C98841 0%,#c9874150 100%);
    background: #C98841;
}
.index2-item-in4 {
    height: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: linear-gradient(135deg, #4CA168 0%,#4ca1684b 100%);
    background: #4CA168;
}
.index2-item-in5 {
    height: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: linear-gradient(135deg, #2E3B90 0%,transparent 100%);
    background: #2E3B90;
}

.index2-item-more span {
    margin-right: 10px;
    transition: all 0.3s;
}
.index2-item-more:hover span {
    color: #FF7019;
}
.index2-item-more i {
    transform: translateX(0px);
    transition: all 0.3s;
}

.index2-item-more:hover i {
    transform: translateX(8px);
}

.index2-list3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index2-list3-item {
    margin-top: 30px;
    width: 23%;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(0px);
    transition: all 0.3s;
}
.index2-list3-item:hover {
    box-shadow: 3px 3px 4px rgba(51, 51, 51, 0.4);
    transform: translateY(-3px);
}


@media screen and (max-width:680px) {
    .index2-out {
        padding: 40px 0;
    }
    .index2  {
        margin-top: 30px;
    }
    .index2-list1 {
        justify-content: space-around;
    }
    .index2-list2 {
        justify-content: space-around;
    }
    .index2-item {
        width: 48%;
        margin-bottom: 15px;
    }
    .index2-item-in1, .index2-item-in2 {
        padding: 12px;
    }
    .index2-item dt {
        font-size: 18px;
        padding: 0;
        background: transparent;
        margin-bottom: 0;
        height: 100%;
    }
    .index2-item dt a {
        display: block;
        height: 100%;
    }
    .index2-item dd {
        display: none;
    }
    .index2-list2 {
        margin-top: 0;
    }
    .index2-item-in1, .index2-item-in2, .index2-item-in3, .index2-item-in4, .index2-item-in5 {
        padding: 12px 0;
        line-height: 150px;
        text-align: center;
    }
    .index2-item-in1 {
        background:#2E3B90;
    }
    .index2-item-in2 {
        background:#10A56E;
    }
    .index2-item-in3 {
        background: #C98841;
    }
    .index2-item-in4 {
        background: #4CA168;
    }
    .index2-list2-item:last-child {
        display: none;
    }
    .index2-list3 {
        justify-content: space-around;
    }
    .index2-list3-item {
        width: 48%;
        margin-bottom: 15px;
        margin-top: 0;
        
    }
    .index2-item-more {
        display: none;
    }
}





/* 首页解决方案模块结束 */

/* 首页产品模块开始 */
.index3-out {
    padding: 80px 0;
    background: #F6f6f6;
}


.index3 .swiper {
    width: 100%;
    height: 100%;
}
.index3 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index3-nav {
    margin-top: 50px;
    padding-bottom: 20px;
}
.index3-nav li {
    float: left;
    margin-right: 30px;
    color: #333;
    font-size: 14px;
    transition: all 0.1s;
    font-weight: 400;
    box-shadow: 3px 3px 10px rgba(51, 51, 51, 0.37);
}
.index3-nav li a{
    padding: 8px 15px;
    display: block;
   
}
.index3-nav li:hover {
    color: white;
    background: #848484;
    transition: all 0.3s;
}
.index3-nav li:last-child {
    float: right;
    margin-right: 0px;
    background: #10A56E;
    color: white;
}
.index3 {
    margin-top: 40px;
    clear: both;
}
.index3-item {
    overflow: hidden;
    background: white;
}
.index3-item img {
    transform: scale(1);
    transition: all 0.3s;
}
.index3-item:hover img{
    transform: scale(1.2);
}
.index3-more {
    display: block;
    width: 140px;
    line-height: 40px;
    text-align: center;
    bottom: 0;
    left: 0;
    background: #10A56E;
    color: white;
    margin: 60px auto 0;
    transition: all 0.3s;
}
.index3-more:hover {
    background: #2E3B90;
}
@media screen and (max-width:680px) {
    .index3-out {
        padding: 40px 0;
    }
    .index3-nav {
        display: none;
    }
    .index3 {
        margin-top: 30px;
    }
    .index3-more {
        margin-top: 30px;
        font-size: 12px;
        width: 100px;
        line-height: 30px;
    }
   
   
}





/* 首页产品模块结束 */





/* 首页产品系统优势模块开始 */
.index4-out {
    background: url(../images/t4.jpg) no-repeat center;
    background-size: cover;
}
.index4-out-bg {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.4);
}
.index4-out .title1 dt{
    color: rgb(26, 42, 110);
    
}
.index4-out .title1 dd{
    color: white;
}
.index4 {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}
.index4-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 20px;
    transition: all 0.3s;
    transform: translateY(0);
}
.index4-item:hover {
    transform: translateY(-8px);
}
.index4-item-img {
    width: 122px;
    height: 122px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 65px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}
.index4-item:hover .index4-item-img{
    background: rgba(255, 255, 255, 0.5);
}
.index4-item dt {
    font-size: 23px;
    color: white;
    margin-top: 20px;
    font-family: "Open Sans",Raleway,roboto,"Microsoft YaHei";
}
.index4-item dd {
    color: white;
    margin-top: 8px;
    font-size: 13px;
    text-align: justify;
    line-height: 20px;
}
.mfcontact {
    display: block;
    width: 140px;
    line-height: 40px;
    text-align: center;
    margin: 80px auto 0;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    color: white;
    transition: all 0.3s;
}
.mfcontact:hover {
    background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width:680px) {
   .index4-out {
    display: none;
   }

}




/* 首页产品系统优势模块结束 */


/* 首页关于轶伦模块开始 */
.index5-out {
    padding: 80px 0;
    background: #F6f6f6;
}
/* .index5-out .title1 dd {
    text-align: justify;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;
    font-size: 12px;
    line-height: 18px;
} */
.index5 {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    box-sizing: border-box;
    padding: 40px;
    background: rgba(255, 255, 255, 0.26);
    border: 1px solid #cacaca1f;
    box-shadow: 1px 1px 5px #cacaca28;
}
.index5-left {
    width: 45%;
    overflow: hidden;
    position: relative;
}
.index5-right {
    width: 52%;
    position: relative;
}
.index5-right h4 {
    font-size: 25px;
    color: #333;
    font-weight: normal;
}
.index5-right-con {
    color: #666;
    margin-top: 40px;
    text-align: justify;
}
.index5-right-con p {
    margin-top: 6px;
    letter-spacing: 2px;
}
.index5-right-more {
    position: absolute;
    display: block;
    width: 140px;
    line-height: 40px;
    text-align: center;
    bottom: 0;
    left: 0;
    background: #10A56E;
    color: white;
}
.index5-right-more:hover {
    background: rgb(39, 39, 39);
}
@media screen and (max-width:680px) {
    .index5-out{
        padding: 40px 0 20px;
    }
    .index5 {
        margin-top: 30px;
        padding: 10px 5px;
        flex-wrap: wrap;
        background: none;
        border: none;
        box-shadow: none;
    }
    .index5-left {
        width: 100%;
    }
    .index5-right {
        width: 96%;
        margin: 15px auto 15px;
        padding-bottom: 50px;
        text-align: center;
    }
    .index5-right-con {
        margin-top: 10px;
        font-size: 12px;
    }
    
    .index5-right-more {
        margin: 30px auto 0;
        font-size: 12px;
        width: 100px;
        line-height: 30px; 
        right: 0;
        left: 0;
    }
}




/* 首页关于轶伦模块结束 */


/* 首页荣誉资质开始 */
.index6-out {
    padding: 60px 0;
}
.index6 {
    overflow: hidden;
    margin-top: 20px;
}
.index6-out .swiper-container {
    width: 100%;
    height: 100%;
    padding: 40px 40px 20px;
    box-sizing: border-box;
    position: relative;
}
.index6-out  .swiper-slide {
    transition: 300ms;
    transform: scale(0.8);
    z-index: -1;
    opacity: 0;
}
.index6-out  .swiper-slide-active, .swiper-slide-duplicate-active{
    transform: scale(1);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.267);
    z-index: 1;
    opacity: 1;
}
.index6-out .swiper-slide-next, .index6-out .swiper-slide-prev {
    opacity: 1 !important;
}

.index6-out .swiper-button-next,.index6-out .swiper-button-prev {
    background: rgba(51, 51, 51, 0.336);
    width: 60px;height: 60px;
    font-size: 20px;
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}
.index6-out .swiper-button-next:hover, .index6-out .swiper-button-prev:hover{
    background: rgba(51, 51, 51, 0.5);
}
.index6-out .swiper-button-next i, .index6-out .swiper-button-prev i{
    transition: all 0.3s;
    transform: translateX(0);
}
.index6-out .swiper-button-next:hover i{
    transform: translateX(4px);
}
.index6-out .swiper-button-prev:hover i{
    transform: translateX(-4px);
}
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}
@media screen and (max-width:680px) {
    .index6-out {
        padding: 30px 0;
    }
    .index6 {
        margin-top: 0;
    }
    .index6-out .swiper-button-next, .index6-out .swiper-button-prev  {
        display: none !important;
    }
}

/* 首页荣誉资质结束 */


/* 首页新闻资讯样式开始 */
.index7-out {
    padding: 80px 0;
    background: #f6f6f6;
}
.index7-nav-out {
    margin-top: 35px;
}
.index7-nav {
    display: flex;
    justify-content: center;
}
.index7-nav li {
    margin: 0 20px;
    background: white;
    color: #333;
}
.index7-nav li:hover {
    background: #848484;
    color: white;
    transition: all 0.3s;
}

.index7-nav li a {
    display: block;
    padding: 10px 20px;
    box-shadow: 3px 3px 10px rgba(51, 51, 51, 0.37);
}
.index7 {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index7-item {
    width: 24%;
    background: white;
    box-shadow: 3px 3px 15px rgba(102, 102, 102, 0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 30px;
}
.index7-item-img {
    height: 150px;
}
.index7-item-img-bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.445);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.index7-item-img-bg {
    color: white;
    font-size: 25px;
    letter-spacing: 5px;
}
.index7-item-con {
    padding: 10px;
    box-sizing: border-box;
    background: white;
    
}
.index7-item-con div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #666666;
    margin-top: 5px;
    font-size: 15px;
    transition: all 0.3s;
    transform: translateX(0);
}
.index7-item-con div:hover {
    color: #333;
    transform: translateX(-3px);
}
.index7-item-con div a {
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width:680px) {
    .index7-out {
        padding: 40px 0;
    }
    .index7-nav-out {
        display: none;
    }
    .index7 {
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .index7-item {
        width: 98%;
        margin: 0 auto 20px;
        box-shadow: none;
    }
    .index7-item:last-child {
        margin: 0 auto 0;
    }
    .index7-item-img {
        height: 68px;
    }
    
}


/* 首页新闻资讯样式结束 */


/* 方案页优点样式开始 */
.index8-out {
    /* border-bottom: 1px solid #CACACA; */
}
.index8 {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    
}
.index8-item {
    box-sizing: border-box;
    text-align: center;
    border-left: 1px solid #CACACA;
    width: 25%;
}
.index8-item:first-child{
    border-left: none;
}
.index8-item dt span {
    font-size: 54px;
    /* font-weight: bold; */
}
.index8-item dt sub {
    font-weight: bold;
}
.index8-item dd {
    color: #666666;
    font-size: 13px;
    margin-top: 5px;
    letter-spacing: 2px;
}


/* 方案页优点样式结束 */



/* 方案页解决方案模块开始 */
.index9-out {
    padding: 80px 0;
    background: #f6f6f6;
    display: none;
}
.index9 {
    margin-top: 50px;
    
}
.index9-items {
    position: relative;
    width: 100%;
    height: 500px;
}
.index9-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    
}
.index9-item-bg {
    height: 100%;
    color: white;
    box-sizing: border-box;
    padding: 80px;
}
.index9-item:nth-child(1) .index9-item-bg{
    background: linear-gradient(135deg, #10A56E 0%,#09848a50 100%);
}
.index9-item-con{
    width: 60%;
    position: relative;
    height: 100%;
}
.index9-item-con h4 {
    font-size: 44px;
    letter-spacing: 5px;
}
.index9-item-con p:nth-child(2) { 
    margin-top: 40px;
    font-size: 28px;
    letter-spacing: 3px;
}
.index9-item-con p:nth-child(3) {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 3px;
}
.index9-item-con p:nth-child(4) {
    margin-top: 25px;
    text-align: justify;
    line-height: 20px;
}
.index9-item-con a {
    position: absolute;
    width: 140px;
    line-height: 40px;
    text-align: center;
    margin: 80px auto 0;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    color: white;
    transition: all 0.3s;
}
.index9-item-con a:hover {
    background: rgba(255, 255, 255, 0.5);
}




.index9-item-active {
    opacity: 1; 
    z-index: 998;
}

.index9-nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
.index9-nav li {
    padding: 0 40px;
    border-left: 1px solid #ddd;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}
.index9-nav li:first-child {
    border-left: none;
}
.index9-nav li:hover {
    color: #848484;
}
.index9-nav-li-active {
    color: #848484;
}

@media screen and (max-width:680px) {
    .index9-out {
        padding: 30px 0;
    }
    .index9 {
        margin-top: 15px;
    }
    .index9-nav li {
        font-size: 14px;
        padding: 0 8px;
    }
    .index9-item-bg {
        padding: 30px 10px;
    }
    .index9-items {
        height: 420px;
    }
    .index9-item-con {
        width: 100%;
    }
    .index9-item-con h4 {
        font-size: 23px;
    }
    .index9-item-con p:nth-child(2) {
        letter-spacing: auto;
        font-size: 12px;
    }
    .index9-item-con p:nth-child(3) {
        letter-spacing: auto;
        font-size: 12px;
    }
    .index9-item-con p:nth-child(4) {
        font-size: 12px;
    }
    .index9-item-con a {
        width: 100px;
        font-size: 13px;
        line-height: 35px;
    }
    .index9-item:nth-child(1) .index9-item-bg {
        background: #10A56E;
    }
    
}

/* 方案页解决方案模块结束 */


/* 方案页案例模块样式开始 */
.index10-out {
    padding: 80px 0;
    
}
.index10 {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index10-item {
    width: 32%;
    margin-bottom: 40px;
    background: #f6f6f6;
}
.index10-item-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.index10-item-img-zx {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    position: absolute;
    transition: all 0.3s;
    opacity: 0;
}
.index10-item:hover .index10-item-img-zx {
    opacity: 1;
}
.index10-item-img-zx a{
    width: 100px;
    line-height: 30px;
    text-align: center;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    color: white;
    transition: all 0.3s;
    border-radius: 30px;
    transition: all 0.5s;
    transform: translateY(20px);
}
.index10-item:hover .index10-item-img-zx a {
    transform: translateY(0);
}
.index10-item-img-zx a:hover {
    background: rgba(255, 255, 255, 0.5);
}
.index10-item-con {
    box-sizing: border-box;
    padding: 10px 20px;
    color: #333;
    /* position: relative;
    z-index: 997; */
    background: #f6f6f6;
    transition: all 0.3s;
}
.index10-item-con dt {
    font-size: 20px;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    overflow:hidden
}
.index10-item-con dd {
    margin-top: 8px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;
    font-size: 12px;
    letter-spacing: 1px;
}
.index10-item:hover .index10-item-con{
    transform: translateY(-5px);
}
.index10-item:last-child{
    background: linear-gradient(135deg, #202d81 0%,#080e3d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}
.index10-item-last-con {
    display: flex;
    justify-content: center;
    align-items: center;
}
.index10-item-last-con img {
    width: 60px ;
}
.index10-item-last-con span{
    /* background: white; */
    color: white;
    line-height: 40px;
    font-size: 30px;
    margin-left: 20px;
}
.index10-item:last-child p{
    margin-top: 20px;
}
.index10-item:last-child p span {
    font-weight: bold;
    font-size: 16px;
}
@media screen and (max-width:680px) { 
    .index10-out {
        padding: 40px 0 0;
    }
    .index10 {
        margin-top: 30px;
    }
    .index10-item {
        width: 48%;
        margin: 0 auto 15px;
    }
    .index10-item-img {
        height: 120px;
    }
    .index10-item:last-child {
        height: 180px;
    }
    .index10-item-con {
        padding: 10px 8px;
    }
    .index10-item-con dt {
        font-size: 12px;
    }
    .index10-item-con dd {
        display: none;
    }
    .index10-item:last-child p {
        display: none;
    }
    .index10-item-last-con img {
        width: 40px;
    }
    .index10-item-last-con span {
        font-size: 15px;
    }
    
}


/* 方案页案例模块样式结束*/



/* 方案页系统模块开始 */
.index11-out .title1 dt {
    color: white;
}
.index11-out {
    background: url(../images/t9.jpg) no-repeat center;
    background-size: cover;
}
.index11-out-bg {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.35);
}
.index11 {
    margin-top: 50px;
    position: relative;
    
}

.index11-out .swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
}

.index11-out .swiper-slide {
}

.index11-out .swiper-pagination  {
    bottom: 0px !important;
}
.index11-out .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 15px !important; 
    height: 3px !important;
    border-radius: 0px !important;
}
.index11-out .swiper-pagination-bullet-active {
    background: white !important;
}

.index11-out .swiper-button-next, .index11-out .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.363);
    font-size: 16px;
    transition: all 0.3s;
}
.index11-out .swiper-button-next {
    right: 0;
}
.index11-out .swiper-button-prev {
    left: 0;
}
.index11-out .swiper-button-next:hover, .index11-out .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.index11-item {
    display: flex;
    justify-content: space-between;
}
.index11-item-con {
    width: 33%;
    background: linear-gradient(135deg, #10A56E 0%,#080e3d 100%);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
}
.index11-item-con h4 {
    font-size: 25px;
    letter-spacing: 3px;
    /* color: #333; */
    color: white;
}
.index11-item-con p {
    margin-top: 25px;
    text-align: justify;
    /* color: #666; */
    color: white;
    line-height: 22px;
}
.index11-item-con a {
    position: absolute;
    display: block;
    width: 140px;
    line-height: 40px;
    text-align: center;
    bottom: 30px;
    left: 30px;
    /* background: #333; */
    background: white;
    /* color: white; */
    color: #333;
    border-radius: 5px;
}
.index11-item-con a:hover {
    /* background: rgb(39, 39, 39); */
}

.index11-item-img {
    width: 65%;
    background: white;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
}
/* 方案页系统模块结束 */




/* 方案页优势特点介绍模块开始 */
.index12-out {
    padding: 80px 0;
}
.index12 {
    display: flex;
    justify-content: space-between;
    /* margin-top: 50px; */
}
.index12-item {
    width: 48%;
    color: white;
    text-align: center;
    box-sizing: border-box;
    padding: 50px;
}
.index12-item:nth-child(1) {
    background: #0c0d11;;
}
.index12-item:nth-child(2) {
    background: #191d21;;
}
.index12-item h4 {
    font-size: 36px;
    font-weight: 400;
}
.index12-item p {
    margin-top: 10px;
    font-size: 16px;
}
.index12-item a{
    margin-top: 10px;
    font-size: 16px;
    color: #4c9cf9;
    display: inline-block;
}
.index12-item-img {
    width: 60%;
    margin: 30px auto 0;
}

/* 方案页优势特点介绍模块结束 */


/* 合作流程模块开始 */
.index13-out {
    background: url(../images/t7.jpg) no-repeat center;
    background-size: cover;
}
.index13-out-bg {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}
.index13 {
    width: 100%;

}
.index13-scroll {
    height: 300px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.index13-item {
    box-sizing: border-box;
    border-left: 1px solid white;
    width: 13.33%;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.466);
    transition: all 0.3s;
}
.index13-item:hover {
    background: rgba(0, 0, 0, 0.7);
}
.index13-item:first-child {
    border-left: none;
}
.index13-item-num {
    font-family: 'Impact Bold', 'Impact Normal', 'Impact';
    font-size: 80px;
    transform: translateY(-30px);
}
.index13-item-dex {
    font-size: 18px;
    font-weight: 600;
}
.index13-item-active {
    width: 20%;
    background: rgba(0, 0, 0, 0.7);
}
.index13-item-ico i{
    font-size: 40px;
    margin-top: 25px;
}

@media screen and (max-width:680px) {
    .index13-out-bg {
        padding: 30px 0;
        display: none;
    }
    .index13 {
        overflow-x: scroll;
        margin-top: 15px;
    }
    .index13-scroll {
        margin-top: 0;
        width: 800px;
        height: 220px;
    }
    .index13-item-num {
        font-size: 40px;
    }
}

/* 合作流程模块结束 */

/* 栏目背景图模块开始 */
.column-out {

}
.column-out-bg {
    background: rgba(0, 0, 0, 0.5);
    height: 180px;
}
.column {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
}
.column {
    width: 60%; 
}
.column-con dt{
    font-size: 30px;
    font-weight: bold;
}
.column-con dd {
    margin-top: 15px; 
}
@media  screen and (max-width:680px) {
    .column-out-bg {
        height: 120px;
    }
    .column {
        width: 90%;
    }
    .column-con dt {
        font-size: 20px;
    }
    .column-con dd {
        font-size: 12px;
        margin-top: 5px;
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient: vertical;
        overflow:hidden;
        width: 100%;
    }
    
}


/* 栏目背景图模块结束 */


/* 面包屑导航开始 */
.position-out {
    padding: 20px 0;
}
.position{
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}
.position li {
    float: left;
    margin-right: 22px;
    position: relative;
    color: #666;
}
.position li::after {
    content: ">";
    position: absolute;
    right: -16px;
}
.position li:last-child::after {
    display: none;
}
.position li:hover {
    color: #333;
}
@media  screen and (max-width:680px) {
    .position-out {
        padding: 10px 0;
    }
    
    .position {
        justify-content: flex-start;
        /* display: none; */
    }
}

/* 面包屑导航结束 */


/* 产品列表页模块开始 */
.probox {
    position: relative;
}

@media  screen and (min-width:681px) {
    .prolist-nav {
        display: flex;
        justify-content: flex-start;
        box-sizing: border-box;
        border-left: 4px solid #10A56E;
        padding-left: 25px;
    }
    .prolist-nav li {
        margin-right: 35px;
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }
    .prolist-nav li:hover {
        color: #10A56E;
    }
    .prolist-nav .prolist-active {
        color: #10A56E !important;
    }
}


.prolist {
    margin-top: 10px;
    border-top: 1px solid #e4e4e4;
    padding: 40px 0 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.prolist-item {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    height: 280px;
    background: white;
    border-top: 1px solid #e4e4e4; 
    padding: 0 20px;
    transition: all 0.3s;
    transform: translateY(0);
}
.prolist-item:hover {
    transform: translateY(-3px);
    box-shadow: 3px 3px 6px rgba(51, 51, 51, 0.2);
    z-index: 997;
}
.prolist-item:nth-child(1) {
    border-top: none; 
}
.prolist-item:nth-child(2) {
    border-top: none; 
}
.prolist-item:nth-child(2n) {
    border-left: 1px solid #e4e4e4;
}
.prolist-item-img {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prolist-item-img img{
    width: 70%;
}
.prolist-item-con {
    width: 58%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.prolist-item-con h4 {
    font-size: 18px;
    font-weight: 300;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.prolist-item-con p {
    margin-top: 14px;
    color: #919391;
    font-size: 14px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;
    text-align: justify;
}
.prolist-item-con a {
    border: 1px solid #ebebeb;
    font-size: 12px;
    color: #777;
    line-height: 28px;
    width: 100px;
    text-align: center;
    margin-top: 20px;
}
.prolist-item-con a:hover {
    background: #A58A75;
    color: white;
}
@media  screen and (max-width:680px) {
    .prolist-nav-out {
        position: absolute;
        padding: 20px 0;
        margin-top: 0 !important;
        position: absolute;
        width: 100%;
        bottom: 20px;
    }

    .prolist-nav {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        
    }
    .prolist-nav li {
       box-shadow: 0px 0px 5px rgba(173, 169, 169, 0.336);
        width: 31%;
        text-align: center;
        margin-top: 10px;
        background: #ea5413;
        color: white;
        border-radius: 5px;
        overflow: hidden;
    }
    .prolist-nav li a {
        font-size: 12px;
        padding: 10px 0;
        display: block;
    }

    

    .prolist {
        padding: 0;
    }
    .prolist-item {
        width: 48%;
        height: auto;
        padding: 40px 0 20px;
        margin: auto ;
        border-bottom: 1px solid #e4e4e4;
        border-left: none !important;
        border-top: none !important;
        flex-wrap: wrap;
        
    }
    .prolist-item-img {
        width:100%;
    }
    .prolist-item-con {
        width: 100%;
    }
    .prolist-item-con h4 {
        font-size: 12px;
        font-weight: bold;
        text-align: center;
    }
    .prolist-item-con p {
        display: none;
    }
    .prolist-item-con a {
        margin: 8px auto 0;
        line-height: 24px;
        width: 80px;
    }
    .probox .pagelist-out {
        padding: 30px 0;
    }

    
}
/* 产品列表页模块结束 */

/* 系统演示开始*/
.schbox {
    background: #f6f6f6;
    padding-bottom: 80px;
    position: relative;
}
.schlist {
    margin-top: 10px;
    border-top: 1px solid #e4e4e4;
    padding: 40px 0 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.schlist-item {
    width: 24%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    background: white;
    transition: all 0.3s;
    transform: translateY(0);
    position: relative;
}
.schlist-item:hover {
    transform: translateY(-3px);
}
.schlist-item a {
    display: block;
}
.schlist-item-img {
    overflow: hidden;
}
.schlist-item-con{
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #10A56E;
    color: white;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    text-align: center;
}
.schlist-item:hover .schlist-item-con {
    border-top: 1px solid white;
}
.schlist-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 100%;
    background: #10A56E;
    color: white;
    font-size: 25px;
    transition: all 0.3s;
    letter-spacing: 5px;
}
.schlist-item:hover .schlist-bg {
    top: 0;
}

.schlist-bg span:hover {
    color: rgb(151, 0, 252);
}

@media screen and (max-width:680px){
    .schbox  {
        padding-bottom: 30px;
    }
    .schlist {
        padding: 20px 0;
    }
    .schlist-item {
        width: 48%;
        margin: 0 auto 15px;
    }
    .schlist-item-con{
        font-size: 12px;
        padding: 5px 5px;
    }
    .schlist-bg {
        font-size: 15px;
    }

}

.xt-box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.xt-box-sub {
    background: white;
    position: absolute;
    width: 600px;
    height: 500px;
    top: 0;left: 0;
    right: 0;bottom: 0;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.479);
    padding: 20px;
    box-sizing: border-box;
    opacity: 1;
}
.xt-title {
   text-align: center;
   margin-bottom: 25px;
   padding-bottom: 25px;
   border-bottom: 1px solid #f0f0f0;
}
.xt-title dt {
    font-size: 30px;
    font-weight: bold;
    color: #333;
}
.xt-title dd {
    margin-top: 6px;
    font-size: 12px;
    color: rgb(99, 21, 21);
}
.xt-con form input {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    padding: 10px 20px;
    margin: 15px auto 0;
    width: 70%;
    display: block;
    border-radius: 50px;
    transform: all 0.3;
}
.xt-con form input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.2);
}
.xt-con form textarea {
    background: white;
    border: none;
    padding: 10px 20px;
    margin: 15px auto;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    width: 70%;
    display: block;
    margin-top: 30px;
}
.xt-con form textarea:focus {
    outline: none;
}
.xt-tj{
    width: 150px;
    background: #025CAB !important;
    color: white;
    display: block;
    margin-top: 30px !important;
    cursor: pointer;
}
.xt-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #025CAB;
    color: white;
    border-radius: 50%;
    transform: translate(50%,-50%) rotate(0deg);
    cursor: pointer;
    transition: all 0.3s;
}
.xt-close:hover {
    transform:translate(50%,-50%) rotate(90deg);
}

.xt-box-active {
    width: 160px;
    height: 60px;
    overflow: hidden;
    right: 0;
    top: 54vh;
    left: auto;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    cursor: pointer;
    transition: all 0.3s;
}
.xt-box-active .xt-box-sub{
    height: 0;
    width: 0;
    opacity: 0;
    transition: all 0.3s;
}
.xt-box-active .xt-xc {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #025CAB;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 100;
    position: relative;
}

.xtlist {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width:680px) {
    .xt-box {
        position: relative;
        background: white;
        display: none;
    }
    .xt-box-sub {
        position: relative;
        width: 100%;
        box-shadow: none;
    }
    .xt-xc {
        display: none;
    }
    .xt-close {
        display: none;
    }
}

/* 系统演示结束 */


/* 系统演示内容页开始 */
.xt-out {
    margin-top: 30px;
}
.xt-out .left {
    width: 100%;
}
.xthp  {
    max-width: 100%;
}
.xtsp {
    width: 26%;
    margin: auto;
    display: block;
}

@media screen and (max-width:1000px) {
    .xt-out {
        margin-top: 5px;
    }
    .xtsp {
        width: 80%;
    }
}


/* 系统演示内容页结束 */

/* 分页样式开始 */
.pagelist {
    display: flex;
    justify-content: center;
}
.pagelist li {
    margin: 0 8px;
}
.pagelist li a {
    display: block;
    padding: 4px 8px;
    color: #333;
    background: white;
    transition: all 0.4s;
}
.pagelist li a:hover {
    background: #ea5413;
    color: white;
}

.thisclass a{
    background: #ea5413 !important;
    color: white !important;
}

 @media screen and (max-width:680px) {
     .pagelist li:first-child {
         display: none;
     }
     .pagelist li:last-child {
        display: none;
    }
 }

.page-right {
    height: 150px;
    width: 40px;
    position: fixed;
    top: 30vh;
    right: 0;
  
}
.page-right li {
    width: 100%;
    background: rgba(0, 0, 0, 0.589);
    color: white;
    position: absolute;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.page-right li:first-child {
   top: 0; 
}
.page-right li:last-child {
    bottom: 0;
    position: absolute;
}





/* 列表右侧分页 */
.flexpage {
    position: fixed;
    right: 10vw;
    top: 45vh;
    display: none;
}
.flexpage li {
    writing-mode:vertical-lr;
    -ms-writing-mode:vertical-lr;
    -webkit-writing-mode: vertical-lr;
    background: white;
    color: #333;
    padding: 10px 5px;
    transition: all 0.3s;   
}
.flexpage li:hover {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}
.flexpage li:first-child {
    margin-bottom: 20px;
}
@media screen and (max-width:680px) {
    .flexpage {
        z-index: 998;
    }
    .flexpage li {
        font-size: 12px;
        padding: 5px 1px;
    }
}

/* 分页样式结束 */


/* 右模块 */

/* 导航模组 */
.rl {
    overflow: hidden;
    
}
.left {
    width: 74%;
    float: left;
}
.right {
    float: right;
    width: 24%;
    box-sizing: border-box;
    height: auto;
}

.right-active {
    background: #025CAB;
    color: white;
}
.right-active a {
    border-bottom: 1px solid transparent !important;
}

@media screen and (max-width:680px) {
    .left {
        width: 100%;
    }
    .right {
        width: 100%;
        position: relative;
    }
}

/* 栏目导航模组 */
@media screen and (min-width:681px) {
    .right1 {
        color: #434343;
        font-size: 18px;
        background: white;
    }
    .right1 li {
        box-sizing: border-box;
        padding: 0 20px;
    }
    .right1 li:hover {
        background: #025CAB;
        color: white;
        transition: all 0.3s;
    }
    .right1 li:hover a {
        border-bottom: 1px solid  transparent !important;
    }
    .right1 li a {
        display: block;
        border-bottom: 1px solid #e4e4e4;
        padding: 8px 0;
        text-indent: 20px;
        box-sizing: border-box;
    }
    .right1 li:last-child a{
        border-bottom: 1px solid transparent !important;
    }
}
@media screen and (max-width:680px) { 
    .right {
        padding-bottom: 40px !important;
    }
    .right1-out {
        padding: 20px 0;
        margin-top: 0 !important;
        position: absolute;
        width: 100%;
        bottom: 20px;
        display: none;
    }

    .right1 {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        
    }
    .right1 li {
       box-shadow: 0px 0px 5px rgba(173, 169, 169, 0.336);
        width: 31%;
        text-align: center;
        margin-top: 10px;
        background: #ea5413;
        color: white;
        border-radius: 5px;
        overflow: hidden;
    }
    .right1 li a {
        font-size: 12px;
        padding: 10px 0;
        display: block;
    }
}




/* 产品模组 */

.rightswper .swiper {
    width: 100%;
    height: 100%;
}

.right-item {
    box-sizing: border-box;
    padding: 20px 20px;
    background: white;
    margin-top: 15px;
}
.right-item:first-child {
    margin-top: 0;
}
.right-title {
    color: #7d7d7d;
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 20px;
}
.rightswper-item {
    display: block;
}
.rightswper-item-img {
    overflow: hidden;
    /* height: 120px; */
}
.rightswper-item p {
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (max-width:680px) {
    .right-item {
        padding: 10px;
    }
    .rightswper-item p {
        font-size: 12px;
        
    }
}

 
/* 联系我们模组 */
.right3-con-wx {
    /* border: 1px solid #e4e4e4; */
    box-sizing: border-box;
}
.right3-con-wx img {
    width: 80%;
    margin: 0 auto 8px;

}
.right3-con-wx p{
    font-size: 12px;
    color: #626262;
}
.right3-con-wx p span {
    font-size: 18px;
    color: #025CAB;
    font-weight: 700;
    margin: 0 5px;
}
.right3-con-lx {
    color: #626262;
    margin-top: 15px;
}
.right3-con-lx p {
    line-height: 22px;
}


@media screen and (max-width:680px) {
    .right3-con {
        display: flex;
        justify-content: space-between;
    }
    .right3-con-wx {
        width: 32%;
    }
    .right3-con-wx img {
        width: 100%;
        margin: 0;
    }
    .right3-con-wx p {
        display: none;
    }
    .right3-con-lx {
        width: 65%
    }
    
}


/* 方案模组 */
.right2-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.right2-item:last-child {
    margin-bottom:0;
}
.right2-item-img {
    width: 32%;
}
.right2-item-con {
    width: 65%;
}
.right2-item-con h4 {
    font-size: 14px;
    color: #626262;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.right2-item-con p {
    font-size: 12px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;
    color: #9d9d9d;
    margin-top: 5px;
}

.sright1 {
    position: relative;
    z-index: 997;
}
@keyframes sRight1 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1s
    }
}
.sright1-active {
    animation: sRight1 0.5s;
}

@media screen and (max-width:680px) {
    .right2-item-img {
        width: 25%;
    }
    .right2-item-con {
        width: 72%;
    }
}



/* 右模块结束 */



/* 新闻列表页开始 */
.newslistbox {
    background: #f6f6f6;
}
.newslistbox .pagelist-out {
    padding: 40px 0;
}
.newslist {
    width: 100%;
}
.newslist-item {
    display: flex;
    justify-content: space-between;
    background: white;
    box-sizing: border-box;
    padding: 30px 30px 60px;
    border-bottom: 1px solid #e4e4e4;
    transition: all 0.3s;
    transform: translateY(0);
}
.newslist-item:last-child {
    border-bottom: none;
}
.newslist-item:hover {
    transform: translateY(-3px);
    box-shadow: 3px 3px 20px rgba(51, 51, 51, 0.274);
}


.newslist-item-img {
    width: 20%;
    max-height: 140px;
    overflow: hidden;
    min-height: 106px;
}
.newslist-item-img img {
    transform: scale(1);
    transition: all 0.3s;
}
.newslist-item:hover .newslist-item-img img{
    transform: scale(1.2);
}
.newslist-item-con {
    width: 77%;
    position: relative;
}
.newslist-item-con h4 {
    color: #434343;
    font-weight: normal;
    font-size: 18px;
    display:-webkit-box;/*转成老版本的弹性盒子*/
    -webkit-line-clamp:1;/*在哪一行显示省略号*/
    -webkit-box-orient: vertical;/*设置方向 垂直方向生*/
    overflow:hidden
}
.newslist-item-con h4:hover {
    color: #025CAB;
}
.newslist-item-con p {
    color: #626262;
    margin-top: 15px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;
}
.newslist-item-con div {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #7d7d7d;;
}
.newslist-item-con div span{
    margin-right: 20px;
    font-size: 16px;
}

@media screen and (max-width:680px) {
    .newslist-item {
        padding: 10px 10px 25px;
    }
    .newslist-item-img {
        width: 32%;
        min-height: auto;
    }
    .newslist-item-con {
        width: 65%;
    }
    .newslist-item-con h4 {
        font-size: 14px;
        -webkit-line-clamp:2;/*在哪一行显示省略号*/
    }
    .newslist-item-con p {
        margin-top: 5px;
        font-size: 12px;
        -webkit-line-clamp:1;/*在哪一行显示省略号*/
        display: none;
    }
    .newslist-item-con div {
        font-size: 12px;
    }
    .newslist-item-con div span {
        font-size: 12px;
        margin-right: 0;
    }
    .newslist-item-con div span:nth-child(1) {
        margin-right: 5px;
    }
}


/* 新闻列表页结束 */


/* tag列表页和产品列表页样式开始 */
.taglist {
    width: 100%;
}
.taglist-item {
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 16px;
}
.taglist-item{
    margin-top: 5px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e4e4e4;
}
.taglist-item a {
    display: block;
    width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.taglist-item a:hover {
    color: #10A56E;
    font-weight: bold;
}
.taglist-item a b {
    color: #10A56E;
}
.taglist-item p {
    width: 16%;
}
.taglist-item div {
    width: 20%;
    font-size: 12px;
}
.taglist-item div {
    display: flex;
    justify-content: flex-end;
}
.taglist-item div span {
    margin-left: 10px;
}
.falist {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 15px;
}
.falist a {
    width: 19%;
    transition: all 0.3s;
    transform: translateY(0);
    margin-bottom: 15px;
}
.falist a:hover {
    transform: translateY(-5px);
}
@media screen and (max-width:680px) {
    .falist {
        margin-top: 0px;
    }
    .falist a:last-child {
        display: none;
    }
    .taglist-item {
        font-size: 14px;
        margin-top: 4px;
        margin-bottom: 10px;
        padding-bottom: 4px;
        box-sizing: border-box;
        padding-left: 14px;
        padding-right: 14px;
    }

    .taglist-item p {
        display: none;
    }
    .taglist-item a {
        width: 85%;
    }
    .falist a {
        width: 32%;
        margin-bottom: 8px;
    }
    .taglist-item div span:nth-child(1) {
        display: none;
    }
}

/* tag列表页和产品列表页结束 */

/* 新闻内容页样式开始 */
.news {
    max-width: 1380px;
}
.newsbox {
    background: #f6f6f6;
    padding-bottom: 40px;
    position: relative;
}
.news-con {
    background: #fff;
    box-sizing: border-box;
    padding: 30px 40px;
}
.news-con h1 {
    text-align: center;
    color: #e61a49;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 36px;
}
.news-des {
    margin-top: 15px;
    text-align: center;
    color: #666;
}
.news-des span {
    margin: 0 10px;
}
.news-con article {
    margin-top: 30px;
    font-size: 18px;
    color: #444;
    line-height: 32px;
    letter-spacing: 0px;
}
.news-con article img {
    width: 80% !important;
    height: auto !important;
    margin: auto;
}
.news-con article a {
    color: #e61a49 !important;
    font-weight: bold;
}




.news-bq {
    margin-top: 30px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}
.news-bq span {
    margin-right: 20px;
}
.news-bq span:first-child {
    margin-right: 0;
}
.news-bq a {
    color: #025CAB;
    font-size: 16px;
}
.news-bq a:hover {
    color: red;
}
.news-sm {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}
.article-page {
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-page a {
    line-height: 26px;
    font-size: 16px;
    color: #ea5413;
    font-weight: bold;
}
.article-page a:hover {
    color: #025CAB;
}
.news-rnews {
    margin-top: 20px;
}
.news-rnewstitle {
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e4e4;
    font-weight: bold;
    margin-bottom: 20px;
}
.news-rnews-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news-rnews-item {
    width: 48%;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 15px;
}
.news-rnews-item a {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.news-rnews-img {
    width: 25%;
    height: 80px;
    overflow: hidden;
}
.news-rnews-con {
    width: 73%;
}
.news-rnews-con h3 {
    color: #626262;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-rnews-con h3:hover {
    color: #025CAB;
}
.news-rnews-con p {
    color: #9d9d9d;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;
    font-size: 12px;
    margin-top: 10px;
}
.news-slg {
    margin: 60px auto 0;
}

@media screen and (max-width:680px) {
    .newsbox {
        padding-bottom: 0;
    }
    .news-con {
        padding: 10px;
    }
    .news-con h1 {
        font-size: 20px;
    }
    .news-des {
        font-size: 12px;
    }
    .news-des span {
        margin: 0 2px;
    }
    .news-des span:nth-child(1), .news-des span:nth-child(2) {
        display: none;
    }
    .news-con article {
        margin-top: 20px;
        font-size: 18px;
        color: #444;
        line-height: 32px;
        letter-spacing: 1px;
    }
    .news-con article img  {
        width: 100% !important;
    }
    .news-rnews-item {
        width: 98%;
    }
    .news-slg {
        width: 100%;
        margin-top: 15px;
    }
    
}




/* 新闻内容页样式结束 */



/* 产品详情页开始 */
.product {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.product-left {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46%;
    background: white;
    /* border: 1px solid #e4e4e4; */
}
.product-left img {
    width: 80%;
}
.product-right {
    width: 50%;
    box-sizing: border-box;
    padding: 40px;
}
.product-right h1 {
    color: #333;
    font-size: 35px;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    
}
.product-right p {
    margin-top: 40px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;
    color: #666;
}
.product-right a {
    display: block;
    width: 180px;
    line-height: 50px;
    text-align: center;
    background: #025CAB;
    color: white;
    margin-top: 150px;
    font-size: 25px;
}
.product-cs {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

@media screen and (max-width:680px) {
    .product {
        flex-wrap: wrap;
    }
    .product-left {
        width: 100%;
        height: auto !important;
        padding: 20px 0;
    }
    .product-right {
        width: 100%;
        padding: 10px;
    }
    .product-right h1 {
        font-size: 23px;
        text-align: center;
        margin-top: 0;
    }
    .product-right p {
        display: none;
    }
    .product-right a {
        display: none;
    }
}

/* 产品详情页结束 */



/* 关于我们开始 */
.aboutbox {
    background: #f6f6f6;
    position: relative;
}
.about {
    margin-top: 10px;
    padding-top: 40px;
    border-top: 1px solid #e4e4e4;
}
.about-title {
    font-size: 26px;
    font-weight: bold;
    color: #494B49;
}
.about1 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.about1-left {
    width: 48%;
}
.about1-left p {
    color: #494B49;
    font-size: 17px;
    margin-bottom: 12px;
    text-align: justify;
    line-height: 26px;
}
.about1-left p span {
    font-weight: bold;
}
.about1-left p:first-child {
    text-indent: 28px;
}
.about1-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center ;
}
.about1-right a {
    width: 100%;
    height: 100%;
    display: block;
}
.about2-out  {
    padding-top: 80px;
    padding-bottom: 40px;
}
.about2 {
    margin-top: 40px;
}
.about2 p{
    color: #494B49;
    font-size: 16px;
    margin-bottom: 15px;
}
.about2 p span {
    margin-left: 40px;
}
.about-jm-out {
    padding: 80px 0;
    border-top: 1px solid #e4e4e4;
}
.about-jm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
}
.about-jm dt{
    font-size: 40px;
    font-weight: bold;
}
.about-jm dd {
    color: #D5D5D5;
    font-size: 28px;
    font-weight: bold;
    margin-top: 15px;
}
.about-jm a {
    background: #025CAB;
    color: white;
    font-size: 20px;
    padding: 15px 28px;
    font-weight: bold;
    margin-top: 40px;
}

@media screen and (max-width:680px) {
    .about {
        padding-top: 15px;
    }
    .about-title {
        font-size: 20px;
    }
    .about1 {
        margin: 20px auto 0;
        width: 96% ;
        flex-wrap: wrap;
    }
    .about1-left {
        width: 100%;
    }
    .about1-left p {
        font-size: 14px;
    }
    .about1-right {
        width: 100%;
    }
    .about2-out {
        padding: 30px 0 20px
    }
    .about2 {
        margin-top: 20px;
    }
    .about2 p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .about2 p span {
        margin-left: 20px;
        font-weight: bold;
    }
    .about-jm-out {
        padding: 30px 10px;
    }
    .about-jm dt {
        font-size: 20px;
        text-align: center;
    }
    .about-jm dd {
        font-size: 20px;
        text-align: center;
        margin-top: 10px;
    }
    .about-jm a {
        background: #025CAB;
        color: white;
        font-size: 13px;
        padding: 8px 17px;
        font-weight: bold;
        margin-top: 28px;
    }
}


/* 关于我们结束 */



/* 联系我们开始 */
.contactbox {
    background: #f6f6f6;
    position: relative;
}
.contact {
    margin-top: 10px;
    padding-top: 40px;
    border-top: 1px solid #e4e4e4;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}
.contact-left {
    color: #333;
    width: 49%;
}
.contact-left p {
    margin-bottom: 20px;
    font-size: 18px;
}
.contact-left p span {
    font-weight: bold;
}
.contact-left p:nth-child(1) {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
}
.contact-right {
    width: 49%;
}
.contact-right form input {
    background: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    width: 230px;
}
.contact-right form input:focus {
    outline: none;
}
.contact-right form textarea {
    background: white;
    border: none;
    padding: 10px 40px;
    margin-top: 15px;
    width: 75%;
}
.contact-right form textarea:focus {
    outline: none;
}

.tj1 input {
    margin-right: 30px !important;
    width: 230px;
}
.contact-right-tj {
    width: 150px;
    background: #025CAB !important;
    color: white;
    display: block;
    margin-top: 50px !important;
    cursor: pointer;
}
#map {
    height: 450px;
}

.contact-map-out {
    padding-bottom: 60px;
}

@media  screen and (max-width:680px) {
    .contact {
        padding-top: 20px;
        flex-wrap: wrap;
    }
    .contact-left {
        width: 98%;
    }
    .contact-left p:nth-child(1) {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .contact-left p {
        font-size: 16px;
        margin-bottom: 13px;
    }
    .contact-right {
        width: 85%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .contact-right form input {
        width: 100%;
        box-sizing: border-box;
    }
    .contact-right form textarea {
        box-sizing: border-box;
        width: 100%;
        padding: 10px 20px;
    }
    .contact-right-tj {
        width: 60% !important;
        margin: 60px auto 0;
    }
}


/* 联系我们结束 */



/* 加盟页开始 */
.jmbanner-out {
    background: url(../images/t10.jpg) no-repeat center;
    background-size: cover;
}
.jmbanner-bg {
    background: rgba(0, 0, 0, 0.6);
}

.jmbanner {
    height: 500px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.jmbanner h1 {
    font-size: 60px;
    letter-spacing: 4px;
    font-weight: 600;
    color: #A1A199;
    color: white    ;
}
.jmbanner h1 span {
    /* font-size: 65px;
  
    font-weight: bold; */
}
.jmbanner p:nth-child(2) {
    margin-top: 10px;
    font-size: 45px;
    letter-spacing: 4px;
    color: #B5A468;
}
.jmbanner p:nth-child(3) {
    margin-top: 50px;
    color: #A1A199;
    font-size: 25px;
}
.jmbanner p:nth-child(4) {
    margin-top: 16px;
    color: #A1A199;
    font-size: 20px;
    border: 1px solid #A1A199;
    padding: 5px 10px;
}
.jmbanner p:nth-child(4) span {
    margin: 0 5px;
}
.jmbanner a {
    background: #025CAB;
    color: white;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    letter-spacing: 5px;
    width: 150px;
    text-align: center;
}

.jm-title {
    text-align: center;
}
.jm-title h4 {
    font-size: 40px;
    letter-spacing: 3px;
}
.jm-title p {
    font-size: 15px;
    margin-top: 10px;
    color: #999999;
    letter-spacing: 2px;
    
}


.jm1-out {
    padding: 80px 0;
}
.jm1 {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.jm1-item {
    width: 45%;
    box-sizing: border-box;
    padding: 50px 0 30px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.5s;
    transform: translateY(0);
}
.jm1-item:hover {
    transform: translateY(-5px);
}

.jm1-item dt {
    font-size: 30px;
    color: #333;
    position: relative;
    text-indent: 18px;
}
.jm1-item dt::after {
    content: "";
    position: absolute;
    height: 6px;width: 6px;
    border-radius: 50%;
    background: #333;
    left: 0;
    top: 18px;
}
.jm1-item dd {
    color: #666;
    margin-top: 20px;
    font-size: 16px;
}



.jm2-out {
    padding: 80px 0 200px;
    background: #10A56E;
}
.jm2-bg {
    /* background: rgba(0, 0, 0, 0.4); */
}
.jm2-out .jm-title h4 {
    color: white;
}
.jm2 {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.jm2-item {
    color: white;
    width: 19%;
    background: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    padding: 30px 15px;
    transition: all 0.5s;
    border-radius: 5px;
}
.jm2-item:hover {
    background: rgba(255, 255, 255, 0.3);
}
.jm2-item:nth-child(2n) {
    transform: translateY(120px);
}
.jm2-item h4 {
    text-align: center; 
    font-size: 20px;
}
.jm2-item-img {
    text-align: center;
    font-size: 40px;
    margin: 30px 0 40px;
}
.jm2-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width:680px) {
    .jmbanner {
        height: 300px;
    }
    .jmbanner h1 {
        font-size: 20px;
        text-align: center;
    }
    .jmbanner p:nth-child(2) {
        font-size: 14px;
        margin-top: 20px;
    }
    .jmbanner p:nth-child(3) {
        margin-top: 10px;
        font-size: 13px;
    }
    .jmbanner p:nth-child(4) {
        font-size: 12px;
        padding: 2px 3px;
    }
    .jmbanner a {
        padding: 6px 0;
        width: 100px;
        font-size: 13px;
    }
    .title1 dt {
        font-size: 24px;
    }
    .title1 dd {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 70%;
        margin: 0 auto;
        display: none;
    }
    
    .jm1-out {
        padding: 30px 0;
    }
    .jm-title h4 {
        font-size: 23px;
    }
    .jm-title p {
        font-size: 12px;
        margin-top: 2px;
    }
    .jm1 {
        margin-top: 15px;
    }
    .jm1-item {
        width: 96%;
        margin: 0 auto;
        padding: 10px 0 20px;
    }
    .jm1-item dt {
        font-size: 22px;
    }
    .jm1-item dd {
        margin-top: 8px;
        font-size: 12px;
    }
    .jm2-out {
        padding: 30px 0;
    }
    .jm2 {
        margin-top: 15px;
    }
    .jm2-item:nth-child(2n) {
        transform: translateY(0)
    }
    .jm2-item {
        width: 100%;
        margin-bottom: 15px;
        padding: 20px 15px;
        position: relative;
    }
    .jm2-item-img {
        position: absolute;
        top: 0;
        margin: 0;
    }
    .jm2-item p {
        margin-top: 20px;
        font-size: 12px;
    }
}


/* 加盟页结束 */



/* 空气开始 */
.air-title dt {
    text-align: center;
    font-size: 30px;
    color: #22184C;
    font-weight: bold;
}
.air-title dd {
    height: 5px;
    width: 40px;
    margin: 20px auto 0;
    background: #22184C;;
}
@media screen and (max-width:680px) {
    .air-title dt {
        font-size: 20px;
    }
    .air-title dd {
        height: 3px;
        margin: 6px auto 0;
    }
}



/* 空气问题模块开始 */
.air1-out {
    padding: 80px 0;
}

.air1 {
    margin-top: 80px;
    background: #DCF4F4;
    box-sizing: border-box;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.air1::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #DCF4F4;
    transform: rotate(45deg);
    top: -25px;
}
.air1-item {
    width: 50%;
    height: 150px;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-top: 2px dashed #22184C;
    border-right: 2px dashed #22184C;
    position: relative;
}
.air1-item::before {
    content: "";
    position: absolute;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #22184C;
    left: -6px;
    top: -6px;
}
.air1-item::after {
    content: "";
    position: absolute;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #22184C;
    right: -6px;
    top: -6px;
}
.air1-item:nth-child(2n) {
    border-right: none;
}
.air1-item:nth-child(1) {
    border-top: none;
}
.air1-item:nth-child(1)::before {
    display: none;
}
.air1-item:nth-child(2) {
    border-top: none;
}
.air1-item:nth-child(2)::after {
    display: none;
}
.air1-item:nth-child(2n)::before {
    display: none;
}
.air1-item:last-child::before {
    top: auto;
    bottom: -6px;
    display: block;
}
.air1-item p {
    font-size: 25px;
    font-weight: bold;
    color: #22184C;
}
@media screen and (max-width:680px) {
    .air1-out {
        padding: 30px 0;
    }
    .air1 {
        margin-top: 30px;
        padding: 10px;
    }
    .air1::after {
        display: none;
    }
    .air1-item {
        padding: 0 10px;
        height: 80px
    }
    .air1-item:last-child::before {
        display: none;
    }
    .air1-item p {
        font-size: 13px;
    }
    
}




/* 空气问题模块结束 */


/* 空气检测系统优势开始 */
.air2-out {
    background: url(../images/air6.jpg) no-repeat center;
    background-size: cover;
}
.air2-bg {
    background: #349eb854;
    padding: 80px 0;
}
.air2-out .air-title dt {
    color: white;
}
.air2-out .air-title dd {
    background: white;
}
.air2 {
    margin-top: 80px;
}
.air2-item {
    width: 700px;
    margin: 40px auto;
    position: relative;
}
.air2-item-img {
    width: 80px;
    position: absolute;
    top: -5px;
    left: -5px;
    box-shadow: 0 0 10px #349eb8c9;
    border-radius: 50%;
}

.air2-item p {
    background: white;
    height: 70px;
    line-height: 70px;
    box-sizing: border-box;
    padding-right: 40px;
    border-radius: 100px;
    font-size: 25px;
    font-weight: bold;
    color: #22184C;
    text-indent: 120px;
    box-shadow: 0 0 15px #349eb8c9;
}
@media screen and (max-width:680px) {
    .air2-bg {
        padding: 30px 0;
    }
    .air2 {
        margin-top: 20px;
    }
    .air2-item {
        width: 96%;
        margin: 20px auto;
    }
    .air2-item-img {
        width: 58px;
    } 
    .air2-item p {
        line-height: 50px;
        height: 50px;
        font-size: 12px;
        text-indent: 70px;
        padding-right: 0px;
    }
}


/* 空气检测系统优势结束 */


/* 空气检测系统云服务开始 */
.air3-out {
    position: relative;
}
.air3-img img {
    display: block;
    width: 100%;
}
.air3 {
    position: absolute;
    top: 0;left: 0;right: 0;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
    padding: 40px 0;
}
.air3 p{
    color: #22184C;
    border: 1px solid #5D7BD7;
    border-radius: 50px;
    position: absolute;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.315);
}
.air3-des1 {
    right: 5%;
    bottom: 15%;
}
.air3-des2 {
    left: 10%;
    bottom: 30%;
}
.air3-des3 {
    right: 16%;
    top: 40%;
}
.air3-des4 {
    right: 16%;
    top: 53%;
}
@media screen and (max-width:680px) {
    .air3-out{
        display: none;
    }
}
/* 空气检测系统云服务结束 */






/* 空气解决方案产品特点开始 */
.air4-out {
    padding: 80px 0;
}
.air4 {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.air4-item {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #C1EBEB;
    color: #22184C;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
}
.air4-item:nth-child(2n) {
    background: #5EA0AE;
    height: 300px;
    color: white;
}
.air4-item-img {
    width: 80px;
    height: 100px;
}
@media screen and (max-width:680px) {
    .air4-out {
        padding: 30px 0;
    }
    .air4 {
        margin-top: 20px;
    }
    .air4-item {
        font-size: 12px;
    }
    .air4-item-img {
        width: 60px;
        height: 77px;
    }
    .air4-item:nth-child(2n) {
        height: 160px;
    }
}

/* 空气解决方案产品特点结束 */



/* 空气解决方案产品展示开始 */
.air5-out {
    padding: 80px;
    background: url(../images/air15.jpg) no-repeat center;
    background-size: cover;
}
.air5 {
    margin-top: 200px;
    display: flex;
    justify-content: space-around;
}
.air5-item {
    background: #145972;
    position: relative;
    width: 40%;
}
.air5-item-img {
    position: absolute;
    right: 0;
    top: -55%;
}
.air5-item-con {
    padding: 160px 20px 20px; 
    box-sizing: border-box;
}
.air5-item-con p {
    color: white;
    font-weight: bold;
    font-size: 25px;
    border-bottom: 1px solid #3D768A;
    padding-bottom: 10px;
}
.air5-item-con a {
    color: #9AB8C2;
    display: block;
    text-align: center;
    margin-top: 14px;
}

.kd5-out {
    background: url(../images/kd8.jpg) no-repeat center;
}

.kd5-out .air5-item-img {
    width: 60%;
}
.air5-item {
    background: #22184C;
}

@media screen and (max-width:680px) {
    .air5-out {
        padding: 20px 10px;
    }
    .air5 {
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .air5-item {
        width: 100%;
        margin-top: 60px;
    }
    .air5-item-img {
        width: 40%;
        right: 0;
        top: -30%;
    }
    .air5-item-con {
        padding: 90px 10px 10px;
    }
    .air5-item-con p {
        font-size: 17px;
    }
    .kd5-out .air5-item-img {
        width: 44%;
    }
}



/* 空气解决方案产品展示结束 */




/* 空气解决方案应用场景开始 */
.air6-out {
    padding: 80px;
}
.air6 {
    margin-top: 60px;
    box-sizing: border-box;
    padding: 0 100px;
    position: relative;
}
.air6 .swiper-button-next {
    height: 60px;
    width: 60px;
    
}
.air6 .swiper-button-prev {
    height: 60px;
    width: 60px;
}
@media screen and (max-width:680px) { 
    .air6-out {
        padding: 20px;
    }
    .air6 {
        padding: 0;
        margin-top: 20px;
    }
    .air6 .swiper-button-next, .air6 .swiper-button-prev {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.514);
        border-radius: 50%;
        
    }
}
/* 空气解决方案应用场景结束 */


/* 空气解决方案联系我们开始 */
.air7-out {
    padding: 80px;
    background: url(../images/air23.jpg) no-repeat center;
    background-size: cover;
    height: 300px;
}
.air7 {
    display: flex;
    align-items: center;
    height: 100%;
}
.air7-con {
    text-align: center;
}
.air7-con dt {
    font-size: 30px;
    margin-bottom: 10px;
}
.air7-con dd {
    font-size: 45px;
    font-weight: bold;
}
.air7-con a {
    font-size: 33px;
    display: inline-block;
    margin: 25px auto 0;
    border: 2px solid black;
    padding: 7px 20px;
}

.kd7-out {
    background: url(../images/kd14.jpg) no-repeat center;
}

.xx6-out {
    background: #EEF5FF;
}
@media screen and (max-width:680px) { 
    .air7-out {
        padding: 15px;
        height: 200px;
    }
    .air7 {
        justify-content: center;
    }
    .air7-con dt{
        font-size: 25px;
    }
    .air7-con dd {
        font-size: 30px;
    }
    .air7-con a {
        font-size: 16px;
    }
}


/* 空气解决方案联系我们结束 */


/* 空气解决方案结束 */




/* 控电方案遇到的问题开始 */
.kd1-out {
    padding: 80px 0;
    background: #CEDDFF;
}
.kd1 {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.kd1-item {
    width: 45%;
    background: #22184C;
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 30px 60px;
    text-align: right;
}
.kd1-item:nth-child(2n) {
    margin-left: 1%;
    text-align: left;
}
.kd1-item:nth-child(1) {
    border-bottom-left-radius: 55px;
    border-top-right-radius: 55px;
}
.kd1-item:nth-child(2) {
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
}
.kd1-item:nth-child(3) {
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
}
.kd1-item:nth-child(4) {
    border-bottom-left-radius: 55px;
    border-top-right-radius: 55px;
}
@media screen and (max-width:680px) { 
    .kd1-out {
        padding: 30px 0;
    }
    .kd1 {
        margin-top: 10px;
    }
    .kd1-item {
        width: 100%;
        padding: 20px 30px;
        font-size: 15px;
        margin-top: 10px;
    }
}
/* 控电方案遇到的问题结束 */


/* 控电方案优势开始 */
.kd2-out {
    padding: 80px 0;
}
.kd2 {
    margin-top: 100px;
}
.kd2-img {
    width: 60%;
    margin: 0 auto;
    position: relative;
}
.kd2-img span {
    position: absolute;
    font-size: 20px;
    color: #22184C;
    font-weight: bold;
}
.kd2-img span:nth-child(1) {
    top: 4.5%;
    left: -4%;
}
.kd2-img span:nth-child(2) {
    top: 6.5%;
    right: -7%;
}
.kd2-img span:nth-child(3) {
    top: 47.5%;
    left: -17%;
}
.kd2-img span:nth-child(4) {
    top: 47.5%;
    right: -19.5%;
}
.kd2-img span:nth-child(5) {
    bottom: 7.5%;
    left: -6%;
}
.kd2-img span:nth-child(6) {
    bottom: 4.5%;
    right: -2%;
}
@media screen and (max-width:680px) {  
    .kd2-out {
        padding: 30px 0;
    }
    .kd2 {
        margin-top: 20px;
    }
    .kd2-img {
        width: 100%;
    }
    .kd2-img img {
        width: 50%;
        margin: auto;
    }
    .kd2-img span {
        font-size: 12px; 
    }
    .kd2-img span:nth-child(1) {
        top: 4.5%;
        left: 0%;
    }
    .kd2-img span:nth-child(2) {
        top: 6.5%;
        right: 0%;
    }
    .kd2-img span:nth-child(3) {
        top: 47.5%;
        left: 0%;
    }
    .kd2-img span:nth-child(4) {
        top: 47.5%;
        right: 0%;
    }
    .kd2-img span:nth-child(5) {
        bottom: 7.5%;
        left: 0%;
    }
    .kd2-img span:nth-child(6) {
        bottom: 4.5%;
        right: 0%;
    }
    
    
}
/* 控电方案优势结束 */



/* 控电方案产品特点开始 */
.kd3-out {
    padding: 80px 0;
}
.kd3 {
    margin-top: 110px;
    display: flex;
    justify-content: space-around;
    box-sizing: border-box;
    padding: 0 70px;
}
.kd3-item {
    width: 20%;
    background: #6462D3;
    position: relative;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 20px;
}
.kd3-item-img {
    position: absolute;
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 50%;
    left: 0;right: 0;
    margin: 0 auto;
    top: -40px;
    border: 4px solid #6462D3;
}
.kd3-item-img img {
    width: 45%;
}
.kd3-item-title {
    text-align: center;
    color: white;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}
.kd3-item-title::after{
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: white;
    left: 0;right: 0;
    bottom: -10px;
    margin: auto;
}
.kd3-item-con {
    margin-top: 35px;
    box-sizing: border-box;
    text-align: center;
    color: white;
    font-size: 14px;
    line-height: 20px;    
}

@media screen and (max-width:680px) { 
    .kd3-out {
        padding: 30px 0 0;
    }
    .kd3 {
        margin-top: 60px;
        padding: 0 10px;
        flex-wrap: wrap;
    }
    .kd3-item {
        width: 48%;
        padding: 10px;
        margin-bottom: 50px;
    }
    .kd3-item-img {
        width: 50px;
        height: 50px;
    }
    .kd3-item-title {
        margin-top: 15px;
        font-size: 16px;
    }
    .kd3-item-con {
        font-size: 12px;
        margin-top: 20px;
    }
}
/* 控电方案产品特点结束 */




/* 智慧校园开始目标 */
.xx1-out {
    padding: 80px 0;
    background: #EEF5FF;
}
.xx1 {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
}
.xx1-left {
    width: 35%;
}
.xx1-right {
    width: 45%;
    display: flex;
    align-items: center;
}
.xx1-right-con p:nth-child(1){
    font-size: 20px;
    font-weight: bold;
}
.xx1-right-con p:nth-child(2){
    font-size: 20px;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 18px;
}
.xx1-right-con p:nth-child(3){
    font-size: 20px;
    font-weight: bold;
    box-sizing: border-box;
    padding: 15px 30px;
    border: 1px solid #CAD0D9;
}
@media screen and (max-width:680px) { 
    .xx1-out {
        padding: 30px 0;
    }
    .xx1 {
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .xx1-left {
        width: 100%;
    }
    .xx1-right {
        width: 100%;
        margin-top: 15px;
    }
    .xx1-right-con p:nth-child(1) {
        font-size: 16px;
    }
    .xx1-right-con p:nth-child(2) {
        font-size: 16px;
    }
    .xx1-right-con p:nth-child(3) {
        font-size: 16px;
        padding: 10px;
    }
}
/* 智慧校园目标结束 */



/* 智慧校园方案开始 */
.xx2-out {
    padding: 80px 0;
}
.xx2 {
    margin-top: 60px;
}
.xx2-des p{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    width: 80%;
    margin: auto;
}
.xx2-img {
    margin-top: 50px;
}
.xx2-img img{
    width: 40%;
    margin: auto;
}
@media screen and (max-width:680px) { 
    .xx2-out {
        padding: 30px 0;
    }
    .xx2 {
        margin-top: 30px; 
    }
    .xx2-des p {
        font-size: 14px;
        width: 90%;
        text-align: justify;
    }
    .xx2-img {
        margin-top: 20px;
    }
    .xx2-img img {
        width: 100%;
    }
    
}
/* 智慧校园方案结束 */



/* 智慧校园方案亮点开始 */
.xx3-out {
    padding: 80px 0 0;
    background: #EEF5FF;
}
.xx3 {
    margin-top: 60px;
    position: relative;
}
.xx3 img {
    position: relative;
    z-index: 2;
}
.xx3 p {
    position: absolute;
    color: #595959;
    box-sizing: border-box;
    padding: 20px;
    width: 300px;
    font-size: 16px;
    background: white;
    text-align: justify;
    font-weight: 600;
    border-radius: 5px;
    z-index: 1;
}
.xx3 p:nth-child(1) {
    left: 10%;
    bottom: 21%;
}
.xx3 p:nth-child(2) {
    left: 25%;
    bottom: 53%;
}
.xx3 p:nth-child(3) {
    right: 25%;
    bottom: 53%;
}
.xx3 p:nth-child(4) {
    right: 10%;
    bottom: 21%;
}
@media screen and (max-width:680px) {
    .xx3-out {
        padding: 30px 0;
    }
    .xx3 {
        margin-top: 30px;
    }
    .xx3 p {
        position: relative;
        margin: 15px auto;
        font-size: 12px;
        line-height: 20px;
        padding: 10px;
    }
    .xx3 p:nth-child(1) {
        left: 0;
        bottom: 0;
    }
    .xx3 p:nth-child(2) {
        left: 0%;
        bottom: 0%;
    }
    .xx3 p:nth-child(3) {
        right: 0%;
        bottom: 0%;
    }
    .xx3 p:nth-child(4) {
        right: 0%;
        bottom: 0%;
    }
    .xx3 img {
        display: none;
    }
}

/* 智慧校园方案亮点结束 */

/* 智慧校园场景应用开始 */

.xx4-out {
    position: relative;
}
.xx4-out .air-title-out {
    position: absolute;
    width: 100%;
    margin-top: 80px;
}
.xx4-out .air-title-out dt {
    color: white;
}
.xx4-out .air-title-out dd {
    background: white;
}
@media screen and (max-width:680px) {
    .xx4-out .air-title-out {
        margin-top: 10px;
    }
}
/* 智慧校园场景应用结束 */


/* 智慧校园价值开始 */
.xx5-out {
    padding: 80px 0;
}
.xx5 {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    box-sizing: border-box;
    padding: 0 100px;
}
.xx5-item {
    width: 23%;
    position: relative;
}
.xx5-item-con {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.xx5-item-img {
    width: 50px;
}
.xx5-item-con p {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}
.xx5-item:nth-child(1) p {
    color: #3C5391;
}
.xx5-item:nth-child(2) p {
    color: #3C5391;
}
@media screen and (max-width:680px) {
    .xx5-out {
        padding: 30px 0;
    }
    .xx5 {
        padding: 0;
        margin-top: 30px;
        /* flex-wrap: wrap;*/
        justify-content: space-around; 
    }
    .xx5-item {
        /* width: 45%; */
    }
    .xx5-item-img {
        width: 25px;
    }
    .xx5-item-con p {
        font-size: 12px;
    }
}

/* 智慧校园价值结束 */



/* 智慧校园选择理由开始 */
.xx7-out {
    padding: 80px 0;
}
.xx7 {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 100px;
}
.xx7-item {
    width: 30%;
    box-sizing: border-box;
    border: 1px solid #ECF0F4;
    box-shadow: 0 0 5px #94959688;
    padding: 50px 0;
}
.xx7-item dt {
    font-size: 20px;
    font-weight: bold;
    color: #3C5391;
    text-align: center;
}
.xx7-item dd {
    width: 70%;
    margin: 20px auto 0;
    color: #5C5C5C;
    font-size: 16px;
    font-weight: bold;
    text-align: justify;
}
@media screen and (max-width:680px) { 
    .xx7-out {
        padding: 30px 0;
    }
    .xx7 {
        padding: 0 10px;
        margin-top: 30px;
    }
    .xx7-item {
        width: 32%;
        padding: 15px 0;
    }
    .xx7-item dt {
        font-size: 12px;
    }
    .xx7-item dd {
        font-size: 12px;
        width: 90%;
        margin-top: 10px;
        font-weight: 400;
    }
    
}

/* 智慧校园选择理由结束 */


/* 智慧校园联系开始 */
.xx8-out {
    background: url(../images/xx17.jpg) no-repeat center;
    background-size: cover;
}
.xx8 {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.xx8-con {
    text-align: center;
    color: #22184C;
}
.xx8-con dt {
    font-size: 35px;
    font-weight: bold;
}
.xx8-con dd {
    font-size: 30px;
    font-weight: bold;
    margin-top: 15px;
}


.xx9-out {
    background: #CADCFD;
}
.xx9 {
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.xx9-con {
    display: flex;
    justify-content: center;
    align-items: center;
}
.xx9-con span {
    font-size: 25px;
    font-weight: bold;
}
.xx9-con a {
    color: #22184C;
    border: 1px solid #22184C;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 35px;
    margin-left: 30px;
}
@media screen and (max-width:680px) {
    .xx8 {
        height: 150px;
    }
    .xx8-con dt {
        font-size: 20px;
    }
    .xx8-con dd {
        font-size: 25px;
    }
    .xx9 {
        height: 80px;
    }
    .xx9-con span {
        font-size: 12px;
        width: 60%;
    }
    .xx9-con a {
        font-size: 12px;
        padding: 5px 0;
        width: 20%;
        text-align: center;
        margin-left: 10px;
    }
}

/* 智慧校园联系结束 */




/* 学校空气需求开始 */
.as1-out {
    padding: 80px 0;
    background: #EEF5FF;
}
.as1 {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
.as1-left {
    background: white;
    box-sizing: border-box;
    padding: 40px;
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.as1-left dt {
    font-size: 30px;
    font-weight: bold;
}
.as1-left dd {
    color: #595959;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-align: justify;
    margin-top: 40px;
}
.as1-right {
    width: 60%;
}
@media screen and (max-width:680px) {
    .as1-out {
        padding: 30px 0;
    }
    .as1 {
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .as1-left {
        width: 100%;
        padding: 20px 10px;
    }
    .as1-left dt {
        font-size: 16px;
    }
    .as1-left dd {
        margin-top: 12px;
        font-size: 12px;
        line-height: 20px;
    }
    .as1-right {
        width: 100%;
    }
}


/* 学校空气需求结束 */



/* 学校空气功能介绍开始 */
.as2-out {
    padding: 80px;
}
.as2-des {
    margin-top: 40px;
}
.as2-des p {
    width: 80%;
    margin: 0 auto;
    font-size: 20px;
    color: #595959;
    font-weight: bold;
    text-align: center  ;
}
.as2 {
    margin-top: 60px;
}
.as2-item {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.as2-item-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.as2-item:nth-child(2n) {
    flex-direction: row-reverse;
}
.as2-item-left img {
    width: 70%;
}
.as2-item-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.as2-item-right div {
    width: 70%;
}
.as2-item-right div dt {
    color: #3C5391;
    font-size: 40px;
    font-weight: bold;
}
.as2-item-right div dd {
    font-size: 25px;
    color: #595959;
    
    margin-top: 5px;
}
@media screen and (max-width:680px) {
    .as2-out{
        padding: 20px 10px;
    }
    .as2-des {
        margin-top: 20px;
    }
    .as2-des p {
        font-size: 12px;
        line-height: 20px;
        width: 100%;
    }
    .as2  {
        margin-top: 20px;
    }
    .as2-item-right div dt {
        font-size: 16px;
    }
    .as2-item-right div dd {
        font-size: 12px;
    }
}
/* 学校空气功能介绍结束 */



/* 学校空气后台展示开始 */
.as3-out {
    padding: 80px 0;
}
.as3-out .air-title dt {
    position: relative;
}
.as3 {
    margin-top: 40px;
    position: relative;
}
.as3-out .air-title dt::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 200px;
    background: #D7D7D7;
    left: 13%;
    top: 0;bottom: 0;
    margin: auto 0;
}
.as3-out .air-title dt::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 200px;
    background: #D7D7D7;
    right: 13%;
    top: 0;bottom: 0;
    margin: auto 0;
}
.as3-out .swiper-container {
    padding: 100px 100px;
    overflow: hidden;
    box-sizing: border-box;
}
.as3-out .swiper-slide {
    transition: 300ms;
	transform: scale(1);
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.479);
    opacity: 0;
}
.as3-out .swiper-slide-active,.swiper-slide-duplicate-active{
    transform: scale(1.6);
    opacity: 1;
}
.as3-out .swiper-slide-next {
    z-index: -1;
    opacity: 1;
}
.as3-out .swiper-slide-prev {
    z-index: -1;
    opacity: 1;
}
.as3-out .swiper-button-next {
    width: 60px;
}
.as3-out .swiper-button-prev {
    width: 60px;
}
.as3-out .swiper-pagination-bullet {
    background: #5773AC !important;
    opacity: 1 !important;
}
.as3-out .swiper-pagination-bullet-active {
    background: transparent !important;
    opacity: 1 !important;
    width: 6px;
    height: 6px;
    border: 2px solid #1c4cac;
}
.as3-out .swiper-pagination {
    display: flex;
    align-items: center;
}
@media screen and (max-width:680px) {
    .as3-out {
        padding: 30px 0;
    }
    .as3-out .air-title dt::before, .as3-out .air-title dt::after {
        display: none;
    }
    .as3-out .swiper-container {
        padding: 0;
    }
    .as3 {
        margin-top: 20px;
    }
    .as3-out .swiper-button-prev, .as3-out .swiper-button-next {
        width: 30px;
    }
    .as3-out .swiper-slide-active,.swiper-slide-duplicate-active{
        transform: scale(1);
        opacity: 1;
    }
    .as3-out .swiper-pagination {
        display: none;
    }
}
/* 学校空气后台展示开始结束 */




/* 学校空气后台智慧升级开始*/
.as4-out {
    position: relative;
    margin-top: 120px;
    padding-bottom: 80px;
}
.as4-out .air-title-out {
    height: 160px;
    width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #94F1EF 0%,#335EB9 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(-70%);
    top: 0;
}
.as4-out .air-title-out dt {
    color: white;
}
.as4-out .air-title-out dd {
    background: white;
}
@media screen and (max-width:680px) {
    .as4-out {
        margin-top: 75px;
        padding-bottom: 50px;
    }
    .as4-out .air-title-out {
        width: 80%;
        height: 80px;     
    }
    .as4-out .air-title-out dt {
        font-size: 16px;
        padding: 0 20px;
    }
}
/* 学校空气后台智慧升级结束*/



/* 学校控电优点开始 */
.ks1-out {
    padding: 80px 0;
}
.ks1 {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ks1-img {
    width: 50%;
    position: relative;
    padding: 250px 0;
}
.ks1-item {
    position: absolute;
    width: 370px;
    background: #EEF5FF;
    box-sizing: border-box;
    padding: 25px 25px;
}
.ks1-item::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #EEF5FF;
    transform: rotate(45deg);
    z-index: -1;
}
.ks1-item-title b {
    color: #22184C;
    font-size: 25px;
    margin-left: 10px;
}
.ks1-item-title span {
    color: #22184C;
    font-size: 18px;
    margin-left: 10px;
    font-weight: bold;
}
.ks1-itemc-con {
    background: white;
    box-sizing: border-box;
    padding: 25px 15px;
    margin-top: 12px;
    color: #595959;
    font-size: 16px;
    font-weight: bold;
    text-align: justify;
    border-top: 1px solid #95B5FF;
    line-height: 24px;
}

.ks1-item:nth-child(1) {
    top: 0;
    left: -25%;
}
.ks1-item:nth-child(1)::after {
    bottom: -7%;
    right: 13%;
}
.ks1-item:nth-child(2) {
    top: 5%;
    right: -23%;
}
.ks1-item:nth-child(2)::after {
    bottom: -7%;
    left: 10%;
}
.ks1-item:nth-child(3) {
    bottom: 6%;
    left: -29%;
}
.ks1-item:nth-child(3)::after {
    top: -7%;
    right: 10%;
}
.ks1-item:nth-child(4) {
    bottom: -4%;
    right: -18%;
}
.ks1-item:nth-child(4)::after {
    top: -7%;
    left: 10%;
}

@media screen and (max-width:680px) { 
    .ks1-out {
        padding: 30px 0;
    }
    .ks1 {
        margin-top: 30px;
    }
    .ks1-img {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .ks1-item {
        position: relative;
        box-sizing: border-box;
        width: 95%;
        margin: auto;
        padding: 15px;
        margin-bottom: 15px;
    }
    .ks1-item:nth-child(1) {
        left: 0;
        top: 0;
    }
    .ks1-item:nth-child(2) {
        left: 0;
        top: 0;
    }
    .ks1-item:nth-child(3) {
        left: 0;
        top: 0;
    }
    .ks1-item:nth-child(4) {
        left: 0;
        top: 0;
    }
    .ks1-item-title b {
        font-size: 16px;
    }
    .ks1-item-title span {
        font-size: 14px;
    }
    .ks1-itemc-con {
        font-size: 12px;
        padding: 10px;
        line-height: 20px;
    }
    .ks1-item::after {
        display: none;
    }
    
}

/* 学校控电优点结束 */



/* 学校控电场景开始 */
.ks2-out {
    padding: 200px 0;
    background: #EEF5FF;
    position: relative;
}
@keyframes Mks2 {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.ks2-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 36%;
    margin: 0 auto;
    z-index: 1;
    top: 12%;
    animation: Mks2 10s 0s infinite linear;
}
.ks2 {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}
.ks2-item {
    width: 22%;
    margin-top: 30px;
    background: white;
}
.ks2-item dt {
    background: #B2C7ED;
    color: #3C5391;
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
}
.ks2-item dd {
    background: white;
    box-sizing: border-box;
    padding: 20px 30px;
    text-align: justify;
    font-size: 15px;
    font-weight: bold;
    color: #595959;
    line-height: 23px;
}
@media screen and (max-width:680px) {
    .ks2-out {
        padding: 30px 0;
    }
    .ks2 {
        margin-top: 0px;
    }
    .ks2-item {
        width: 49%;
        margin-top: 15px;
    }
    .ks2-item dt {
        font-size: 16px;
        padding: 10px 0;
    }
    .ks2-item dd {
        padding: 10px;
        font-size: 12px;
        line-height: 20px;
    }
}

/* 系统演示开始 */


/* 系统演示结束 */


/* 播放链接样式--啊那是 */
/* .bf {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.bf-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.bf-img i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.1s;
}
.bf-img i:hover {
    color: white;
} */


/* video的显示和隐藏 */
.vbox-out {
    width: 100%;
    height: 100%;
}
.vbox-in {
    width: 100%;
    height: 100%;
}
.vbox {
    width: 100%;
}




/* 学校控电场景结束 */





/*  新闻-解决方案内容页全屏显示 */
.quan {
    position: fixed;
    bottom: 0;
    left: 0;right: 0;
    margin: auto;
    width: 80px;
    height: 40px;
    background: #10a56ed2;
    color: white;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    font-size: 16px;
    letter-spacing: 2px;
    z-index: 996;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    line-height: 40px;
}
.quan:hover {
    background: #10a56ef1;
}
.news-out-active .left {
    width: 100%;
}
.news-out-active .right {
    display: none;
}
@media screen and (max-width:680px) {
    .quan {
        display: none;
    }
}
/*  新闻-解决方案内容页全屏显示结束 */



/* 新闻中心列表页开始 */
.nscbanner-bg {
    height: 400px;
    background: rgba(0, 0, 0, 0.7);
}
.nscbanner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
.nscbanner p {
    font-size: 45px;
    color: white;
    letter-spacing: 3px;
}
.nsc {
    padding-bottom: 60px;
}
@media screen and (max-width:680px) {
    .nscbanner-bg {
        height: 200px;
    }
    .nscbanner p{
        font-size: 20px;
    }
    .nsc {
        padding-bottom: 20px;
    }
}

/* 新闻中心列表页结束 */

.a {
    /* 主题背景色 */
    color: #F4F4F4;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow:hidden;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* 智能会议室主题页开始 */

/* 智能会议室banner模块结束 */
.zm1-out {
    background: url(../images/zm1.jpg) no-repeat center;
}
.zm1-bg {
    background: linear-gradient(90deg, rgb(2, 92, 171) 30%, #10a56ee5 100%);
    padding: 80px 0;
    color: white;
}
.zm1-title {
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
}
.zm1-title span {
    color: rgb(17, 226, 17);
}
.zm1-title a {
    color: rgb(241, 89, 89);
}
.zm1-con {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 400px;
}
.zm1-con dt {
    font-size: 28px;
    color: white;
    font-weight: bold;
    margin-bottom: 25px;
}
.zm1-right dt {
    color:  white;
}
.zm1-con dd {
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 10px;
    padding-left: 20px;
}
.zm1-left-last {
    font-weight: bold;
    margin-top: 15px !important;
}
.zm1-left-last span {
    color: rgb(255, 208, 0);
}
.zm1-right-last {
    margin-top: 20px !important;
}
.zm1-right-last a{
    background: red;
    padding: 5px 12px;
    border-radius: 4px;
}
.zm1-right-last a:hover {
    background-color: #025CAB;
}
.zm1-con img {
    width: 150px;
}
@media screen and (max-width:680px) {
    .zm1-title {
        font-size: 25px;
    }
    .zm1-title:nth-child(3) {
        margin-top: 20px;
    }
    .zm1-bg {
        padding: 30px 10px;
    }
    .zm1-con {
        flex-wrap: wrap;
        height: auto;
        margin-top: 10px;
    }
    .zm1-con dt {
        margin-bottom: 8px;
        font-size: 16px;
    }
    .zm1-con dd {
        font-size: 14px;
        letter-spacing: 0px;
        margin-top: 2px;
    }
    .zm1-con img {
        display: none;
    }
    .zm1-left {
        width: 100%;
    }
    .zm1-right {
        width: 100%;
        margin-top: 10px;
    }
}
/* 智能会议室banner模块开始 */


/* 智能会议室双向管控模块开始 */
.zm2-out {
    padding: 60px 0 60px; 
}
.zm-title {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
}
.zm-title span {
    color: #10A56E;
}
.zm2 {
    display: flex;
    justify-content: space-between;
}
.zm2-title {
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    color: red;
}
.zm2-left {
    width: 29%;
    margin-bottom: 20px;
}
.zm2-right {
    width: 68%;
}
@media screen and (max-width:680px) {
    .zm2-out {
        padding: 30px 0
    }
    .zm-title {
        font-size: 20px;
    }
    .zm2 {
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .zm2-left {
        width: 100%;
    }
    .zm2-right {
        width: 100%;
    }
    .zm2-title {
        margin-bottom: 10px;
    }
}

/* 智能会议室双向管控模块结束 */


/* 智能会议室核心功能开始 */
.zm3-out {
    padding: 60px 0;
    background: rgb(2, 92, 171);
    color: white;
}
.zm3-title {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}
.zm3 {
    margin-top: 40px;
    background: rgb(2, 30, 54);
}
.zm3-item {
    border-bottom: 1px solid white;
}
.zm3-item-title {
    text-align: center;
    box-sizing: border-box;
    padding: 15px 6px;
    cursor: pointer;
}
.zm3-item-title:hover {
    background: #10A56E;
}
.zm3-item-title dt {
    color: yellow;
    font-size: 33px;
    font-weight: bold;
}
.zm3-item-title dd {
    margin-top: 3px;
    font-size: 15px;
}
.zm3-con {
    box-sizing: border-box;
    justify-content: space-around;
    display: flex;
    overflow: hidden;
    padding: 0 20px;
    height: 0;
}
.zm3-left {
    width: 20%;
}
.zm3-left dt {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.zm3-left dt a {
    color: red;
}
.zm3-left dd {
    font-size: 16px;
    margin-bottom: 5px;
}
.zm3-left dd p {
    font-size: 14px;
    margin-top: 5px;
}
.zm3-right {
    width: 60%;
}
.zm3-item-active .zm3-con {
    height: auto;
    transition: all 0.3s;
}
@media screen and (max-width:680px) { 
    .zm3-out {
        padding: 30px 0;
    }
    .zm3-title {
        font-size: 20px;
    }
    .zm3 {
        margin-top: 10px;
    }
    .zm3-item-title dt {
        font-size: 20px;
    }
    .zm3-con {
        flex-wrap: wrap;
    }
    .zm3-left {
        width: 100%;
    }
    .zm3-right {
        width: 100%;
    }
}
/* 智能会议室核心功能结束 */




/* 智能会议室优势 */
.zm4-out {
    padding: 60px 0;
}
.zm4 {
    text-align: center;
}
.zm4 p span {
    color: red;
}
.zm4 p:nth-child(1) {
    font-size: 30px;
    color: red;
    font-weight: bold
}
.zm4 p:nth-child(2) {
    margin-top: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #10A56E;
}
.zm4 p:nth-child(3) {
    margin-top: 15px;
    font-size: 50px;
    font-weight: bold;
    color: #10A56E;
}
.zm4 p:nth-child(4) {
    margin-top: 15px;
    font-size: 60px;
    font-weight: bold;
    color: #10A56E;
}
.zm4 p:nth-child(5) {
    margin-top: 30px;
    font-size: 30px;
    font-weight: bold;
}
.zm4 img {
    width: 200px;
    margin: 15px auto 0;
}
@media screen and (max-width:680px) { 
    .zm4-out {
        padding: 30px 0;
    }
    .zm4 p:nth-child(1) {
        font-size: 20px;
    }
    .zm4 p:nth-child(2) {
        font-size: 18px;
        margin-top: 10px;
    }
    .zm4 p:nth-child(3) {
        font-size: 23px;
        margin-top: 10px;
    }
    .zm4 p:nth-child(4) {
        font-size: 29px;
        margin-top: 10px;
    }
    .zm4 p:nth-child(5) {
        font-size: 20px;
        margin-top: 18px;
    }
}
/* 智能会议室优势结束 */


/* 智能会议室新闻开始 */
.zm5-out {
    padding: 60px 0;
}
.zm5 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.zm5-bg {
    background: url(../images/zm10.jpg) no-repeat center;
    background-size: cover;
    height: 200px;
    margin-top: 50px;
}
.zm5-bg div {
    height: 100%;
    background: rgba(0, 0, 0, 0.493);
}
.zm5-item {
    width: 31%;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed #10A56E;
    padding-bottom: 8px;
}
.zm5-item :hover {
    color: #10A56E;
}
.zm5-item p {
    width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zm5-item p b {
    color: #10A56E;
}
@media screen and (max-width:680px) { 
    .zm5-out {
        padding: 30px 0;
    }
    .zm5-bg {
        margin-top: 20px;
        height: 120px;
    }
    .zm5 {
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .zm5-item {
        width: 100%;
        margin-bottom: 8px;
        padding-bottom: 4px;
    }
    .zm5-item p {
        font-size: 14px;
    }
}

.zm6-out {
    padding: 50px 0;
}
.zm6-out img {
    width: 58%;
    margin: auto;
}
.zm6 {
    margin-top: 50px;
}

@media screen and (max-width:680px) { 
    .zm6-out img {
        width: 100%;
    }
}

.zm7-out {
    padding: 50px 0;
    background: linear-gradient(90deg, rgb(2, 92, 171) 30%, #10a56ee5 100%);
}
.zm7-out .zm-title {
    color: white;
}
.zm7 {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.zm7-item {
    width: 23%;
    background: white;
    overflow: hidden;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
    padding: 40px 15px;
}
.zm7-item:hover {
    background: #10A56E;
    color: white;
    transition: all 0.3s;
}
.zm7-item dt {
    font-size: 30px;
    font-weight: bold;
    color: #10A56E;
}
.zm7-item:hover dt {
    color: white;
}
.zm7-item p {
    display: block;
    width: 60px;
    height: 2px;
    background: #10A56E;
    margin: 15px auto 20px;
}
.zm7-item:hover p {
    background: white;
}
.zm7-item span {
    color: red;
}
.zm7-item dd {
    font-size: 20px;
    line-height: 35px;
}
.zm7-zx {
    text-align: center;
    font-size: 40px;
    margin-top: 60px;
    color: white;
}
.zm7-zx:hover {
    color: orangered;
}

@media screen and (max-width:680px) { 
    .zm7-out {
        padding: 30px 0;
    }
    .zm7 {
        margin-top: 10px;
    }
    .zm7-item {
        width: 49%;
        margin-bottom: 15px;
        padding: 10px;
    }
    .zm7-item dt {
        font-size: 20px
    }
    .zm7-item dd {
        font-size: 14px;
        line-height: 24px;
    }
    .zm7-zx {
        margin-top: 0;
        font-size: 20px;
    }
}

/* 智能会议室新闻结束 */

/* 智能会议室主题页结束 */



/* 首页底部推荐样式开始 */
.tj-out {
    display: none;
}
@media screen and (max-width:680px) { 
    .tj-out {
        padding: 20px 0;
        display: block;
    }
    .tj-title {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #CACACA;
        color: #ea5413;
        letter-spacing: 2px;
    }
    .tj {
        margin-top: 15px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        
    }
    .tj a {
       box-shadow: 0px 0px 5px rgba(173, 169, 169, 0.336);
        width: 31%;
        text-align: center;
        font-size: 12px;
        padding: 10px 0;
        margin-top: 10px;
        background: #ea5413;
        color: white;
        border-radius: 5px;
    }
}

/* 首页底部推荐样式结束 */