.lightboxs {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1010;
    position: fixed;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: .5s ease;
    display: none;
}
.lightboxs.show {
    opacity: 1;
    pointer-events: auto;
    transition: .5s ease;
}
.lightboxs.show .light_wrap{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: .5s .5s ease;
}
.light_wrap {
    display: flex;
    max-width: 800px;
    width: fit-content;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.9);
    opacity: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 2.6vw 0;
    border: 1px solid #000;
    transition: 0.5s ease;
}

.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;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 1px 5px 0px rgb(0 0 0 / 20%);
}
.light_wrap .close span:nth-child(1){
    width: 19px;
    height: 2px;
    position: absolute;
    background-color: #000;
    transform: rotate(45deg);
}
.light_wrap .close span:nth-child(2){
    width: 19px;
    height: 2px;
    background-color: #000;
    transform: rotate(-45deg);
}
.light_wrap .box1 {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    padding: 0 2.6vw 20px;
    max-height: 80vh;
    max-height: calc(var(--vh, 1vh) * 80);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.light_wrap .box1::-webkit-scrollbar {
    width: 8px;
}

.light_wrap .box1::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.light_wrap .box1::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
}

.light_wrap .box1 img {
    width: 100%;
}

.light_wrap .box2 {
    width: 50%;
}

.light_wrap .box2 .title {
    margin-bottom: 21%;
    font-size: calc(60/1920*100vw);
}

.light_wrap .box2 p {
    font-size: calc(18/1920*100vw);
}

.light_once {
    position: absolute;
    bottom: 1vw;
    right: 2.6vw;
    display: flex;
    align-items: center;
}
.light_once p {
    padding-left: 5px;
}

@media (max-width: 1024px) {
    .light_wrap {
        max-width: 600px;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .light_wrap .close {
        right: -20px;
        top: -20px;
    }
    .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);
    }
}

@media (max-width: 700px) {
    .light_wrap {
        width: 95%;
        padding: 30px 0 40px;;
    }
    .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 {
        top: -30px;
        right: 50%;
        transform: translate(50%,0);
    }
    .light_wrap .box1 {
        padding: 0 3.5vw;
    }
    .light_once {
        bottom: 10px;
        right: 3.5vw;
    }
}