.container {
    position: relative;
}

.menu .menu-item li:nth-of-type(5) a {
    color: #2575f2;
}

.menu .menu-item li:nth-of-type(5) .menu-item-line {
    width: 100%;
}

.business-main {
    width: 100%;
    margin-top: 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12%;
    box-sizing: border-box;
    position: relative;
}

.business-main p {
    font-size: 0.14rem;
}

.business-main .l {
    display: block;
    width: 0.13rem;
    height: 0.015rem;
    background: #e50012;
    margin: 0.1rem 0;

}

.business-main-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.1rem;
}

.business-main li {
    width: 24%;
    height: 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.2rem;
    margin-left: 0.07rem;
}
.business-main li:hover{
    cursor: pointer;
}

.business-main li a img {
    width: 100%;
    height: 1.5rem;
}

.business-main li img {
    width: 100%;
    height: 1.5rem;
}

.business-text {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 25% 5%;
}

.business-text span {
    display: block;
    height: 0.015rem;
    width: 0.2rem;
    background: #d8d8d8;
    margin: 0.01rem 0 0.1rem;
}

.business-text p {
    font-size: 0.1rem;
    color: #2575f2;
    height: 0.27rem;
}

.business-text i {
    color: #888888;
    font-family: arial;
    font-size: 0.08rem;
    margin-top: 0.2rem;
}

.video-box {
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    pointer-events: auto;
}

.video-box .close {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    width: 0.15rem;
    height: 0.15rem;
    position: fixed;
    top: 0.2rem;
    right: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.1rem;
    /* display: none; */
}

.video-box .close span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.03rem;
}

.video-box .close:hover {
    cursor: pointer;
}

#video {
    width: 7.5rem;
    height: 5rem;
    position: fixed;
    top: -0.001rem;
    left: 1.2rem;
    display: none;
    z-index: 9;
}

#pagination .prev a {
    width: 0.25rem;
    font-size: 0.07rem;
}

#pagination .next a {
    width: 0.25rem;
    font-size: 0.07rem;
}

#pagination {
    display: flex;
    justify-content: center;
}

#pagination li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.03rem;
    /* width: 0.3rem; */
    height: 0.18rem;
    padding: 0 0.01rem;
    background: #f0f2f5;
    border-radius: 0.01rem;
    font-size: 0.08rem;
}

#pagination li a {
    display: flex;
    width: 0.15rem;
    align-items: center;
    justify-content: center;

}

#pagination .active {
    background: rgb(37, 117, 242);
}

#pagination .active a {
    color: #fff;
}

#pagination .disabled a {
    color: #a8abb2;
    cursor: not-allowed;
}

@media screen and (max-width:600px) {
    .business-main {
        margin-top: 0.5rem;
    }
    .video-box .close {
        border: 1px solid #fff;
        border-radius: 50%;
        color: #fff;
        width: 0.3rem;
        height: 0.3rem;
        position: fixed;
        top: 39%;
        right: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.1rem;
        /* display: none; */
    }
    
    .video-box .close span {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.03rem;
    }
    
    .video-box .close:hover {
        cursor: pointer;
    }
    
    #video {
        height: 5rem;
        position: fixed;
        top: 40%;
        display: none;
        z-index: 9;
    }
    #pagination{
        height: 2rem;
        margin-top: 0.5rem;
    }
    #pagination .prev,#pagination .next{
        height: 0.6rem;
        width: 0.75rem;
        transform: scale(0.8);
    }
    #pagination .prev a {
        width: 100%;
        /* transform: scale(0.5); */
        /* font-size: 0.07rem; */
    }
    
    #pagination .next a {
        width: 100%;
    }
    #pagination li{
        width: 0.5rem;
        height: 0.6rem;
        transform: scale(0.8);
    }

    .footer {
        position: fixed;
        bottom: 0.5rem;
    }

    .footer-bottom {
        position: fixed;
        bottom: 0;
    }

    .business-text {
        padding: 15% 0%;
    }

    .business-text span {
        height: 0.02rem;
        width: 0.2rem;
        margin-top: -0.2rem;
        margin-left: 0.15rem;
    }

    .business-text p {
        transform: scale(0.8);
        height: 0.45rem;
        box-sizing: border-box;
        margin-left: -0.03rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .business-text i {
        transform: scale(0.8);
        margin-top: 0.05rem;
    }
}