.common-tit{
    display: flex;
    align-items: flex-end;
}
.common-tit h2{
    /*color: #1B379B;*/
    font-weight: bold;
}
.common-tit div{
    margin-left: 10px;
    color: #957b54;
}
.sw-point{
    display: flex;
    justify-content: center;
}
.sw-point span{
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: #1B379B;
}
.intro .summary{
    line-height: 2;
}
.intro .list{
    display: flex;
    gap:20px
}
.intro .item{
    border-radius: 10px;
    padding: 20px;
    flex: 1;
        border: 1px solid #eceeef;
        transition: all 0.5s;
        position: relative;
        overflow: hidden;
}
.intro .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B379B, #957b54);
}
.intro .item:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(11, 36, 105, .08);
}
.intro .item-top{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
    color: #1B379B;
    font-weight: bold;
} 
.intro .item-btm{
    color: #666666;
    text-align: center;
    margin-top: 10px;
}
.intro .num{
    line-height: 1;
}
.video .vio{
    position: relative;
    cursor: pointer;
}
.video .vio:after{
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    position: absolute;
    z-index: 2;
}
.video .vio-act:after{
    display: none;
}
.video .vio video{
    display: block;
    width: 100%;
}
.video .play{
    cursor: pointer;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.capacity .list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:22px;
}
.capacity .item{
    background: #fff;
    border: 1px solid #eceeef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s;
}
.capacity .item:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(11, 36, 105, .08);
}
.capacity .img{
     position: relative;
            height: 0;
            padding-bottom: 30%;
            overflow: hidden;
            display:block;
            transition: 0.5s;
}
.capacity .img img{
    position: absolute;
                height: 100%;
                width: 100%;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                transition: all 0.5s;
                object-fit: cover;
}
.capacity .txt{
    padding: 20px;
}
.capacity .tit{
    font-weight: bold;
    color: #1B379B;
}
.capacity .des{
    color: #666666;
    margin-top: 10px;
    line-height: 2;
}
.applications .swiper-wrapper{
    align-items: stretch;
}
.applications .swiper-slide{
    height: auto;
    background: #fff;
    border: 1px solid #eceeef;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.applications .swiper-slide:hover .img img{
    transform: scale(1.05);
}
.applications .txt{
    padding: 20px;
}
.applications .tit{
    font-weight: bold;
    color: #1B379B;
}
.applications .des{
    color: #666666;
    margin-top: 10px;
    line-height: 2;
    overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
.applications .img{
     position: relative;
            height: 0;
            padding-bottom: 38%;
            overflow: hidden;
            display:block;
            transition: 0.5s;
}
.applications .img img{
    position: absolute;
                height: 100%;
                width: 100%;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                transition: all 0.5s;
                object-fit: cover;
}
.honor .swiper-wrapper{
    align-items: stretch;
}
.honor .swiper-slide{
    height: auto;
    padding: 20px;
    border: 1px solid #eceeef;
    border-radius: 8px;
    overflow: hidden;
}
.honor .img{
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.honor .img img{
    max-height: 100%;
    max-width: 100%;
}
.honor .txt{
    padding: 20px 0;
}
.honor .tit{
    font-weight: bold;
    color: #1B379B;
    text-align: center;
}
.honor .des{
    text-align: center;
    color: #666666;
    margin-top: 10px;
    line-height: 2;
    
    overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.honor .swiper-slide:hover .img img{
    transform: scale(1.02);
}
.pop-up{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    display: none;
}
.pop-up .box{
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.6);
    max-height: 70vh;
    overflow: hidden;
    width: 600px;
}
.pop-up .w1440{
    display: flex;
    flex-direction: column;
    align-items: center;
        justify-content: center;
    height: 100vh;
}
.pop-up .pop-close{
    cursor: pointer;
    margin-top: 30px;
}
.pop-up .img {
    position: relative;
    height: 0;
    padding-bottom: 38%;
    overflow: hidden;
    display: block;
    transition: 0.5s;
}
.pop-up .img img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.5s;
    object-fit: cover;
}
.pop-up .txt{
    padding: 20px;
}
@media (max-width: 768px) {
    .intro .list{
        flex-direction: column;
    }
    .capacity .list{
            grid-template-columns: 1fr;
    }
    .pop-up .box{
        width: 96%;
    }
}
<!--ºÄÊ±1789486193.1458Ãë-->