body {
    padding-top: 87px;
}

.nBanner {
    background: url(../images/hybanner.png)no-repeat center center;
}

ul {
    list-style: none;
}

.industry {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 70px;
}

.industry li {
    color: #666666;
    margin-bottom: 32px;
    transition: all .3s;
}

.industry li>div {
    width: 100%;
    padding: 40px 50px;
    background: #F8F7F7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.industry li:last-child {
    margin-bottom: 0px;
}

.industry h2 {
    font-weight: 500;
    line-height: 54px;
    letter-spacing: 8px;
}

.industry span {
    display: block;
    width: 51px;
    height: 2px;
    background: #666666;
    margin: 16px 0px;
}

.industry p {
    font-weight: 400;
    line-height: 32px;
}

.industry .btn {
    width: 140px;
    line-height: 46px;
    border: 1px solid #666666;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}

.industry a {
    display: block;
    color: #666666;
    transition: all .3s;
}

.industry li:hover>div {
    background: #000064;
    color: #fff;
    transition: all .3s;
}

.industry li:hover span {
    background: #fff;
    transition: all .3s;
}

.industry li:hover .btn {
    background: #fff;
    border: 1px solid #fff;
    transition: all .3s;
}

.industry li:hover a {
    color: #000064;
    transition: all .3s;
}

/* 移动端 */
@media (max-width: 767px) {
    .nBanner {
        background: url(../images/mhybanner.png)no-repeat center center;
        background-size: cover;
    }

    .industry li>div {
        padding: 20px 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .industry span {
        margin: 4px 0px 8px 0px;
    }

    .industry .btn {
        margin-top: 30px;
        line-height: 40px;
        width: 120px;
    }

    .industry .btn a {
        font-size: 12px;
    }

    .industry {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}