.head-page .item:nth-child(3)>a::after{
    transform: scaleX(1);
    opacity: 1
}
.head-page:hover .item:nth-child(3)>a span{
    color: #0065BD;
}
.head-page.active .item:nth-child(3)>a span{
    color: #0065BD;
}
.industry_page .list:nth-child(2n){
    background: #F6F6F6;
}
.industry_page .width1724{
    padding: 80px 4.8%;
    box-sizing: border-box;
}
.industry_page .list:nth-child(2n) .width1724{
    flex-direction: row-reverse;
}
.industry_page .img{
    width: 50.15%;
}
.industry_page .img img{
    transition: all .4s;
}
.industry_page .texts{
    width: 43.5%;
}
.industry_page .tit{
    color: #333333;
}
.industry_page .desc{
    margin: 27px 0 60px;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 10px;
    box-sizing: border-box; 
}
.industry_btn{
    width: 158px;
    height: 52px;
    border: 1px solid #0065BD;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0065BD;
    position: relative;
    z-index: 1;
}
.industry_btn::before{
    content: "";
    display: block;
    transition: all .4s;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background: #1462AE;
}
@media only screen and (min-width: 960px) {
    .industry_page .img:hover img{
        transform: scale(1.05);
    }
    .industry_btn:hover{
        color: #fff;
    }
    .industry_btn:hover::before{
        width: 100%;
    }
}
@media only screen and (max-width: 1280px) {
    .industry_page .desc {
        margin: 15px 0 35px;
        max-height: 84px;
    }
    .industry_btn {
        width: 132px;
        height: 45px;
    }
    .industry_page .width1724{
        padding: 80px 3%;
    }
}
@media only screen and (max-width: 1200px) {
    .industry_page .width1724 {
        padding: 80px 0;
    }
}
@media only screen and (max-width: 960px) {
    .industry_page .width1724 {
        padding: 60px 0;
    }
}
@media only screen and (max-width: 768px) {
    .industry_page .img {
        width: 100%;
    }
    .industry_page .texts {
        width: 100%;
        margin-top: 20px;
    }
    .industry_btn{
        display: none;
    }
    .industry_page .width1724 {
        padding: 30px 0;
    }
    .industry_page .desc {
        margin: 10px 0 0;
        max-height: initial;
    }
    .industry_page .list:nth-child(1) .width1724{
        padding-top: 20px;
    }
}