.lightboxs {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1010;
    position: fixed;
    top: 0;
    opacity: 1;
    pointer-events: initial;
    transition: 0.3s ease;
}
.lightboxs.active{
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;

}
.light_wrap {
    display: flex;
    max-width: 1000px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #fff;
    padding: 2.60416vw;
    border: 1px solid #000;
}

.light_wrap .close {
    position: absolute;
    right: -1.5625vw;
    top: -1.5625vw;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 25px;
    cursor: pointer;
    border: 1px solid #c1c1c1;
    background-color: #fff;
}
.light_wrap .close span:nth-child(1){
    width: 19px;
    height: 2px;
    background-color: #000;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 15px;
}
.light_wrap .close span:nth-child(2){
    width: 19px;
    height: 2px;
    background-color: #000;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 15px;
}
.light_wrap .box1 {
    background-position: center;
    background-repeat: no-repeat;
    /* border: 1px solid #000; */
    /* margin-right: 2.90625vw; */
    height: 100%;
    width: 100%;
    overflow-y:auto;
    max-height: 80vh;
    /* width: 50%; */
}

.light_wrap .box1 img {
    width: 100%;
}

.light_wrap .box2 {
    width: 50%;
}

.light_wrap .box2 .title {
    /* border: 1px solid #000; */
    margin-bottom: 21%;
    font-size: calc(60/1920*100vw);
}

.light_wrap .box2 p {
    font-size: calc(18/1920*100vw);
}

@media (max-width: 1024px) {
    .light_wrap {
        width: 700px;
    }
    .light_wrap .close {
        right: -15px;
        top: -15px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
    .light_wrap .box2 p {
        font-size: calc(18/1024*100vw);
        max-height: 55px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .light_wrap .box2 .title {
        font-size: calc(60/1024*100vw);
    }
    .light_wrap .close span:nth-child(1) {
        left: 5px;
        top: 13px;
    }
    .light_wrap .close span:nth-child(2) {
        left: 5px;
        top: 13px;
    }
}

@media (max-width: 700px) {
    .light_wrap {
        width: 88vw;
    }
    .light_wrap .box2 .title {
        font-size: calc(24/500*100vw);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .light_wrap .close {
        right: -3.623vw;
    }
    .light_wrap .close span:nth-child(1) {
        left: 5px;
        top: 13px;
    }
    .light_wrap .close span:nth-child(2) {
        left: 5px;
        top: 13px;
    }
}
@media (max-height: 500px){
    .light_wrap{
        width: 40vw
    }
}