#CPJZ .more {
    background-color: white;
    padding: 0 calc(1vh + 1vw);
    margin: 1vw 0;
    display: flex;
    align-items: center;
    width: 20vw;
    height: 5vw;
    /* background-color: #3c8aff; */
    background-image: linear-gradient(to right, #49affe, #3370ff);
    justify-content: space-around;
}

#CPJZ .more:hover {
    cursor: pointer;
}

#CPJZ .more .icon img:hover {
    transition: all 0.5s;
    transform: translateX(25%);
}

#CPJZ .card {
    background-color: white;
    padding: 0 calc(1vh + 1vw);
    margin: 1vw 0;
    display: flex;
    align-items: center;
    width: 20vw;
    height: 5vw;
    transition: all 0.5s;
    box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.1);
}

#CPJZ .MB {
    width: 20vw;
    height: 5vw;
    position: absolute;
    top: 0;
    left: 0;
    /* filter: blur(5px); */
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#CPJZ .MB:hover {
    opacity: 1;
}

#CPJZ .card:hover {
    cursor: pointer;
    /* box-shadow: 7px 0 6px rgba(0, 0, 0, 0.1); */
    margin-top: -1px;
}

#CPJZ .card img {
    width: 3vw;
    height: 3vw;
}

#CPJZ .card .main {
    height: 3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    text-indent: 1rem;
}

#CPJZ .line {
    width: 2rem;
    height: 3px;
}