.inner{
    padding: 0 70px;
    margin: 0 auto;
}

section{
    width: 100%;
    height: 100vh;
}

.popup__wrap{
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.85);
    display: none;
}

.popup__wrap.on{
    display: flex;
}

.popup__wrap > .popup{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    height: auto;
}

.popup__wrap > .popup .popup__closed__line{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.popup__wrap > .popup .popup__contents{
    height: auto;
    overflow: auto;
    max-height: 700px;
    background-color: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--input-line);
    border-radius: 10px;
    padding: 20px;
}

.title{
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1;
}

.sub__title{
    font-size: 32px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1;
}

.user__wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    height: auto;
    gap: 10px;
}

.user__wrap .user__img{
    width: 38px;
    height: 38px;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user__wrap .user__img img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.user__wrap .user__info .user__name{
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
}

.user__wrap .user__info div{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.user__wrap .user__info div > img{
    width: 14px;
    height: auto;
}

.user__wrap .user__info div > p{
    font-size: 14px;
    font-weight: 700;
    color: var(--point-color);
}

.user__wrap .user__more{
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: url(/image/img_white_arr.png) #262626;
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    position: relative;
}

.user__wrap .user__more ul{
    width: 142px;
    height: auto;
    padding: 25px 0;
    border: 1px solid #3E3E3E;
    background-color: var(--black-color);
    position: absolute;
    top: 54px;
    right: 0;
    border-radius: 10px;
    border-top-right-radius: 0px;
    z-index: 999;
    display: none;
}

.user__wrap .user__more ul > li{
    width: 100%;
    height: auto;
}

.user__wrap .user__more ul > li:nth-child(n+2){
    margin-top: 20px;
}

.user__wrap .user__more ul > li a{
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    width: 100%;
    display: block;
    text-align: center;
}

.paging__wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 55px;
}

.paging__wrap > li{
    width: 15px;
    height: 15px;
}

.paging__wrap > li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1;
}

.paging__wrap > li.active a{
    color: #fff;
}

.actor__movie__time img{ width: 15px; }
.actor__movie__watch img{ width: 15px; }
.actor__movie__like img{ width: 15px; }

@media screen and (max-width: 1200px){
    .title{
        font-size: 35px;
        margin-bottom: 10px;
    }

    .sub__title{
        font-size: 25px;
    }
}

@media screen and (max-width: 900px){
    .title{
        font-size: 24px;
    }

    .sub__title{
        font-size: 20px;
    }

    .inner{
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px){
    .inner{
        padding: 0 20px;
    }
}
